]> granicus.if.org Git - php/commitdiff
Fix the fix. Sorry for the commit noise.
authorGwynne Raskind <gwynne@php.net>
Tue, 1 Apr 2008 02:41:16 +0000 (02:41 +0000)
committerGwynne Raskind <gwynne@php.net>
Tue, 1 Apr 2008 02:41:16 +0000 (02:41 +0000)
configure.in

index cf06e7ead067c5f09ce26545af5b273d6a6a4561..1571cc2301a1e5537f9a9242146a3da073d22a39 100644 (file)
@@ -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