summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2013-06-28 17:19:42 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-06-28 17:49:26 (GMT)
commit94b540479aba44cfe64c7a5e051dc490179cefff (patch)
tree72353a85aaf08025c05ab13699de82f56838b8a7 /configure.ac
parent6653aa9ecd955faccb0ace6f2d8c374b8ea7daaa (diff)
downloadgit-94b540479aba44cfe64c7a5e051dc490179cefff.zip
git-94b540479aba44cfe64c7a5e051dc490179cefff.tar.gz
git-94b540479aba44cfe64c7a5e051dc490179cefff.tar.bz2
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 <stefano.lattarini@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index f3462d9..2f43393 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])