From: Stefano Lattarini Date: Fri, 28 Jun 2013 17:19:42 +0000 (+0200) Subject: configure: fix option help message for --disable-pthreads X-Git-Tag: v1.8.3.2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=94b540479aba44cfe64c7a5e051dc490179cefff;p=git configure: fix option help message for --disable-pthreads The configure option to disable threading is '--disable-pthreads', not '--without-pthreads'. Signed-off-by: Stefano Lattarini Signed-off-by: Junio C Hamano --- diff --git a/configure.ac b/configure.ac index f3462d9c81..2f433939dc 100644 --- a/configure.ac +++ b/configure.ac @@ -193,7 +193,7 @@ AC_ARG_ENABLE([pthreads], [FLAGS is the value to pass to the compiler to enable POSIX Threads.] [The default if FLAGS is not specified is to try first -pthread] [and then -lpthread.] - [--without-pthreads will disable threading.])], + [--disable-pthreads will disable threading.])], [ if test "x$enableval" = "xyes"; then AC_MSG_NOTICE([Will try -pthread then -lpthread to enable POSIX Threads])