]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
remove unnecessary braces
authorAndreas Herz <andi@geekosphere.org>
Sun, 31 Jan 2016 21:34:56 +0000 (22:34 +0100)
committerVictor Julien <victor@inliniac.net>
Mon, 8 Feb 2016 10:50:54 +0000 (11:50 +0100)
configure.ac

index c5d8b8ea1e8428c2629591517bda86ab755bfcb4..000cc68000ebedeb5d1bad9cb3984f13f9465e59 100644 (file)
     ])
 
     AC_ARG_ENABLE(coccinelle,
-           AS_HELP_STRING([--disable-coccinelle], [Disable coccinelle QA steps during make check])],[enable_coccinelle="$enableval"],[enable_coccinelle=yes])
+           AS_HELP_STRING([--disable-coccinelle], [Disable coccinelle QA steps during make check]),[enable_coccinelle="$enableval"],[enable_coccinelle=yes])
     AS_IF([test "x$enable_coccinelle" = "xyes"], [
         AC_PATH_PROG(HAVE_COCCINELLE_CONFIG, spatch, "no")
         if test "$HAVE_COCCINELLE_CONFIG" = "no"; then
 
   # disable detection
     AC_ARG_ENABLE(detection,
-           AS_HELP_STRING([--disable-detection], [Disable Detection Modules])], [enable_detection="$enableval"],[enable_detection=yes])
+           AS_HELP_STRING([--disable-detection], [Disable Detection Modules]), [enable_detection="$enableval"],[enable_detection=yes])
     AS_IF([test "x$enable_detection" = "xno"], [
         AC_DEFINE([HAVE_DETECT_DISABLED], [1], [Detection is disabled])
     ])