]> git.ipfire.org Git - people/ms/suricata.git/commitdiff
Fix typo of trailing ] in configure --help
authorbladeswords <bladeswords@users.noreply.github.com>
Wed, 3 Feb 2016 11:09:34 +0000 (22:09 +1100)
committerVictor Julien <victor@inliniac.net>
Tue, 9 Feb 2016 13:21:26 +0000 (14:21 +0100)
It is the small things that count.  This is an example of the fix

Before
--disable-threading-tls Disable TLS (thread local storage)]

After
--disable-threading-tls Disable TLS (thread local storage)

configure.ac

index 6cbea678903bfd31f5679f4ca0c50671825b25be..6daa5e6df8bd9000919b1fdb47bfdee4d6f0ca18 100644 (file)
 
   # disable TLS on user request
     AC_ARG_ENABLE(threading-tls,
-           AS_HELP_STRING([--disable-threading-tls], [Disable TLS (thread local storage)])], [enable_tls="$enableval"],[enable_tls=yes])
+           AS_HELP_STRING([--disable-threading-tls], [Disable TLS (thread local storage)]), [enable_tls="$enableval"],[enable_tls=yes])
     AS_IF([test "x$enable_tls" = "xyes"], [
         # check if our target supports thread local storage
         AC_MSG_CHECKING(for thread local storage __thread support)