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)
pull/1845/head
bladeswords 10 years ago committed by Victor Julien
parent 5cee70f9ae
commit 2a17e3e827

@ -259,7 +259,7 @@
# disable TLS on user request # disable TLS on user request
AC_ARG_ENABLE(threading-tls, 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"], [ AS_IF([test "x$enable_tls" = "xyes"], [
# check if our target supports thread local storage # check if our target supports thread local storage
AC_MSG_CHECKING(for thread local storage __thread support) AC_MSG_CHECKING(for thread local storage __thread support)

Loading…
Cancel
Save