OSDN Git Service

configure: fix option help message for --disable-pthreads
authorStefano Lattarini <stefano.lattarini@gmail.com>
Fri, 28 Jun 2013 17:19:42 +0000 (19:19 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 28 Jun 2013 17:49:26 +0000 (10:49 -0700)
The configure option to disable threading is '--disable-pthreads',
not '--without-pthreads'.

Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
configure.ac

index f3462d9..2f43393 100644 (file)
@@ -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])