From: bladeswords Date: Wed, 3 Feb 2016 11:09:34 +0000 (+1100) Subject: Fix typo of trailing ] in configure --help X-Git-Tag: suricata-3.0.1RC1~163 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a17e3e827a2d90d03b0525ad567d3668681947d;p=thirdparty%2Fsuricata.git Fix typo of trailing ] in configure --help 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) --- diff --git a/configure.ac b/configure.ac index 6cbea67890..6daa5e6df8 100644 --- a/configure.ac +++ b/configure.ac @@ -259,7 +259,7 @@ # 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)