diff options
author | Thomas Klausner <wiz@NetBSD.org> | 2014-02-25 21:41:07 +0100 |
---|---|---|
committer | Aliaksey Kandratsenka <alk@tut.by> | 2014-03-01 11:29:22 -0800 |
commit | fd3379a213b2a99a72a7544b6208056daf15d0d2 (patch) | |
tree | 2f9d81c08bb9ad35fa46a65f84d297a316ec7fde /configure.ac | |
parent | a7223c2a14431ffd783117c55f84a2c84423d313 (diff) | |
download | gperftools-fd3379a213b2a99a72a7544b6208056daf15d0d2.tar.gz |
Fix unportable test(1) construct.
Signed-off-by: Aliaksey Kandratsenka <alk@tut.by>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 4823cc1..a15276e 100644 --- a/configure.ac +++ b/configure.ac @@ -375,7 +375,7 @@ AC_LINK_IFELSE( AC_MSG_RESULT([$acx_pthread_despite_asking_for]) AC_LANG_RESTORE -AM_CONDITIONAL(HAVE_PTHREAD_DESPITE_ASKING_FOR, test x"$acx_pthread_despite_asking_for" == xyes) +AM_CONDITIONAL(HAVE_PTHREAD_DESPITE_ASKING_FOR, test x"$acx_pthread_despite_asking_for" = xyes) # Find out what namespace 'normal' STL code lives in AC_CXX_STL_NAMESPACE |