From: Gwynne Raskind Date: Tue, 1 Apr 2008 02:41:16 +0000 (+0000) Subject: Fix the fix. Sorry for the commit noise. X-Git-Tag: RELEASE_2_0_0b1~522 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fcb9db398a5e3f0f0b28cd5428f2d8ca2b1dba41;p=php Fix the fix. Sorry for the commit noise. --- diff --git a/configure.in b/configure.in index cf06e7ead0..1571cc2301 100644 --- a/configure.in +++ b/configure.in @@ -1260,9 +1260,9 @@ CC=$old_CC dnl Finish the Darwin hack if test "$php_did_darwin9_cheat" -eq 1; then if test "$PHP_DEBUG" = "yes"; then - CFLAGS=`echo "-O2 $CFLAGS" | $SED -e 's/-gstabs/-g/g'` + CFLAGS=`echo "$CFLAGS" | $SED -e 's/-gstabs/-g/g'` else - CFLAGS=`echo "$CFLAGS" | $SED -e 's/-gstabs//g'` + CFLAGS=`echo "-O2 $CFLAGS" | $SED -e 's/-gstabs//g'` fi fi