diff options
author | Jeff King <peff@peff.net> | 2012-11-04 08:00:13 -0500 |
---|---|---|
committer | Jeff King <peff@peff.net> | 2012-11-04 08:00:13 -0500 |
commit | c25a3684f53a237ca5935c403936cb68809f0b0e (patch) | |
tree | fe3ec01dca52cb7796a78497668943d0c33914d8 | |
parent | Merge branch 'po/maint-refs-replace-docs' (diff) | |
parent | configure: fix some output message (diff) | |
download | tgif-c25a3684f53a237ca5935c403936cb68809f0b0e.tar.xz |
Merge branch 'sl/maint-configure-messages'
Minor message fixes for the configure script.
* sl/maint-configure-messages:
configure: fix some output message
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index c85888c851..ad215cc4a1 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= |