aboutsummaryrefslogtreecommitdiffhomepage
path: root/m4
diff options
context:
space:
mode:
authorGravatar liujisi@google.com <liujisi@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2010-12-03 09:12:33 +0000
committerGravatar liujisi@google.com <liujisi@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2010-12-03 09:12:33 +0000
commit2726e7a6ebd72eec6f66abe4ced3c88983f20b8e (patch)
treedcf88bc5537ca5b35b1bee3af5c04505b7a90c94 /m4
parent0acafda8f424bb8a5adcf77bf2d4bdb3a9661d4b (diff)
Fix issues: 166 167 172 175 181 188 192 194 195.
Diffstat (limited to 'm4')
-rw-r--r--m4/acx_pthread.m46
1 files changed, 4 insertions, 2 deletions
diff --git a/m4/acx_pthread.m4 b/m4/acx_pthread.m4
index 2cf20de1..cb1a4bbe 100644
--- a/m4/acx_pthread.m4
+++ b/m4/acx_pthread.m4
@@ -272,9 +272,11 @@ if test "x$acx_pthread_ok" = xyes; then
AC_TRY_LINK(,, , [done=yes])
if test "x$done" = xyes ; then
- AC_MSG_RESULT([no])
- else
AC_MSG_RESULT([yes])
+ done="no"
+ else
+ AC_MSG_RESULT([no])
+ done="yes"
fi
fi