diff options
author | Daniel Baumann <daniel@debian.org> | 2024-11-12 14:55:25 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2024-11-12 15:03:49 +0100 |
commit | 46b0f2926541b09c341bd8e308573c76e6c5892c (patch) | |
tree | 30987af4996654c9b434117d2a2494a1905978fa | |
parent | Changing lua build-profile to match its original intendet purpose of enabling... (diff) | |
download | frr-46b0f2926541b09c341bd8e308573c76e6c5892c.tar.xz frr-46b0f2926541b09c341bd8e308573c76e6c5892c.zip |
Changing pim6d build-profile to match its original intendet purpose of enabling pim6d by default but allowing to exclude it if needed (Closes: #1071653).
Signed-off-by: Daniel Baumann <daniel@debian.org>
-rwxr-xr-x | debian/rules | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/debian/rules b/debian/rules index b4d51bb7..25d2b05c 100755 --- a/debian/rules +++ b/debian/rules @@ -27,10 +27,10 @@ else CONF_LUA=--disable-scripting endif -ifeq ($(filter pkg.frr.pim6d,$(DEB_BUILD_PROFILES)),) - CONF_PIM6=--disable-pim6d -else +ifeq ($(filter pkg.frr.nopim6d,$(DEB_BUILD_PROFILES)),) CONF_PIM6=--enable-pim6d +else + CONF_PIM6=--disable-pim6d endif export PYTHON=python3 |