summaryrefslogtreecommitdiff
path: root/source3/lib/replace
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-10-06 14:02:44 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:15:14 -0500
commitd898cbce90673d1f13d2fd0b2c8308af34e2fb9c (patch)
treec31ab607f6b5d5e1b9720bc475706b938cda8415 /source3/lib/replace
parent2941d46b82bc9aa3165190aefe5d429f3b39f5b5 (diff)
downloadsamba-d898cbce90673d1f13d2fd0b2c8308af34e2fb9c.tar.gz
samba-d898cbce90673d1f13d2fd0b2c8308af34e2fb9c.tar.bz2
samba-d898cbce90673d1f13d2fd0b2c8308af34e2fb9c.zip
r19130: fix the logic for the AC_PROG_CC_C99 check
metze (This used to be commit 21516dc5ac95e7e5d6a7d7f890d42742b36f2454)
Diffstat (limited to 'source3/lib/replace')
-rw-r--r--source3/lib/replace/libreplace_cc.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/replace/libreplace_cc.m4 b/source3/lib/replace/libreplace_cc.m4
index 73ce01700e..77bb5a0598 100644
--- a/source3/lib/replace/libreplace_cc.m4
+++ b/source3/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