summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-10-06 14:02:44 +0000
committerStefan Metzmacher <metze@samba.org>2006-10-06 14:02:44 +0000
commit5200c6079f465122a048f6e7d1541c4c78dcbbb0 (patch)
treed00a8a2b9a1529832da59708cb38be187a4dd0de
parent59badf6d636a47bef0c0472f6bd4f8ad9107d2d9 (diff)
downloadsamba-5200c6079f465122a048f6e7d1541c4c78dcbbb0.tar.gz
samba-5200c6079f465122a048f6e7d1541c4c78dcbbb0.tar.xz
samba-5200c6079f465122a048f6e7d1541c4c78dcbbb0.zip
r19130: fix the logic for the AC_PROG_CC_C99 check
metze
-rw-r--r--source/lib/replace/libreplace_cc.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/replace/libreplace_cc.m4 b/source/lib/replace/libreplace_cc.m4
index 73ce01700e3..77bb5a0598c 100644
--- a/source/lib/replace/libreplace_cc.m4
+++ b/source/lib/replace/libreplace_cc.m4
@@ -31,7 +31,7 @@ CFLAGS=$savedCFLAGS
dnl don't try for C99 if we are using gcc, as otherwise we
dnl lose immediate structure constants
-if test x"$GCC" = x"no" ; then
+if test x"$GCC" != x"yes" ; then
AC_PROG_CC_C99
fi