* [PATCH] configure: fix some output message
@ 2012-10-24 15:34 Stefano Lattarini
2012-10-25 9:11 ` Jeff King
0 siblings, 1 reply; 2+ messages in thread
From: Stefano Lattarini @ 2012-10-24 15:34 UTC (permalink / raw)
To: git; +Cc: Stefano Lattarini
Before this change, output from ./configure could contain
botched wording like this:
checking Checking for POSIX Threads with '-pthread'... yes
instead of the intended:
checking for POSIX Threads with '-pthread'... yes
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
---
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index c85888c..ad215cc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1024,7 +1024,7 @@ elif test -z "$PTHREAD_CFLAGS"; then
for opt in -mt -pthread -lpthread; do
old_CFLAGS="$CFLAGS"
CFLAGS="$opt $CFLAGS"
- AC_MSG_CHECKING([Checking for POSIX Threads with '$opt'])
+ AC_MSG_CHECKING([for POSIX Threads with '$opt'])
AC_LINK_IFELSE([PTHREADTEST_SRC],
[AC_MSG_RESULT([yes])
NO_PTHREADS=
@@ -1044,7 +1044,7 @@ elif test -z "$PTHREAD_CFLAGS"; then
else
old_CFLAGS="$CFLAGS"
CFLAGS="$PTHREAD_CFLAGS $CFLAGS"
- AC_MSG_CHECKING([Checking for POSIX Threads with '$PTHREAD_CFLAGS'])
+ AC_MSG_CHECKING([for POSIX Threads with '$PTHREAD_CFLAGS'])
AC_LINK_IFELSE([PTHREADTEST_SRC],
[AC_MSG_RESULT([yes])
NO_PTHREADS=
--
1.8.0.rc2.11.gd25c58c
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] configure: fix some output message
2012-10-24 15:34 [PATCH] configure: fix some output message Stefano Lattarini
@ 2012-10-25 9:11 ` Jeff King
0 siblings, 0 replies; 2+ messages in thread
From: Jeff King @ 2012-10-25 9:11 UTC (permalink / raw)
To: Stefano Lattarini; +Cc: git
On Wed, Oct 24, 2012 at 05:34:27PM +0200, Stefano Lattarini wrote:
> Before this change, output from ./configure could contain
> botched wording like this:
>
> checking Checking for POSIX Threads with '-pthread'... yes
>
> instead of the intended:
>
> checking for POSIX Threads with '-pthread'... yes
>
> Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Thanks, looks obviously correct.
-Peff
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-10-25 9:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-24 15:34 [PATCH] configure: fix some output message Stefano Lattarini
2012-10-25 9:11 ` Jeff King
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).