diff mbox

configure: fix 3rd arg w/AC_ARG_ENABLE

Message ID 1439662415-4374-1-git-send-email-vapier@gentoo.org
State Accepted
Delegated to: Pablo Neira
Headers show

Commit Message

Mike Frysinger Aug. 15, 2015, 6:13 p.m. UTC
The 3rd arg is used when --{enable,disable}-foo are passed in, not when
the feature is enabled.  Use the existing $enableval instead.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Pablo Neira Ayuso Aug. 18, 2015, 6:09 a.m. UTC | #1
On Sat, Aug 15, 2015 at 02:13:35PM -0400, Mike Frysinger wrote:
> The 3rd arg is used when --{enable,disable}-foo are passed in, not when
> the feature is enabled.  Use the existing $enableval instead.

Applied, thanks.
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/configure.ac b/configure.ac
index 2521ccc..7ff572a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -53,10 +53,10 @@  AC_ARG_ENABLE([libipq],
 	[enable_libipq="$enableval"], [enable_libipq="no"])
 AC_ARG_ENABLE([bpf-compiler],
 	AS_HELP_STRING([--enable-bpf-compiler], [Build bpf compiler]),
-	[enable_bpfc="yes"], [enable_bpfc="no"])
+	[enable_bpfc="$enableval"], [enable_bpfc="no"])
 AC_ARG_ENABLE([nfsynproxy],
 	AS_HELP_STRING([--enable-nfsynproxy], [Build SYNPROXY configuration tool]),
-	[enable_nfsynproxy="yes"], [enable_nfsynproxy="no"])
+	[enable_nfsynproxy="$enableval"], [enable_nfsynproxy="no"])
 AC_ARG_WITH([pkgconfigdir], AS_HELP_STRING([--with-pkgconfigdir=PATH],
 	[Path to the pkgconfig directory [[LIBDIR/pkgconfig]]]),
 	[pkgconfigdir="$withval"], [pkgconfigdir='${libdir}/pkgconfig'])