From fcb9db398a5e3f0f0b28cd5428f2d8ca2b1dba41 Mon Sep 17 00:00:00 2001 From: Gwynne Raskind Date: Tue, 1 Apr 2008 02:41:16 +0000 Subject: [PATCH] Fix the fix. Sorry for the commit noise. --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.50.1