From b8b751bb75f3c7a5e3eff0ccbd652191fd2554f3 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 15 Aug 2015 14:13:35 -0400 Subject: configure: fix 3rd arg w/AC_ARG_ENABLE 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 Signed-off-by: Pablo Neira Ayuso --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 2521ccc8..7ff572a2 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']) -- cgit v1.2.3