diff options
author | Gwynne Raskind <gwynne@php.net> | 2008-04-01 02:41:16 +0000 |
---|---|---|
committer | Gwynne Raskind <gwynne@php.net> | 2008-04-01 02:41:16 +0000 |
commit | fcb9db398a5e3f0f0b28cd5428f2d8ca2b1dba41 (patch) | |
tree | 633319877316ce519e4026eea9b07446555f7a0d /configure.in | |
parent | b9907f55ddf3c810329ff2afc59a2d2bd11bfa1b (diff) | |
download | php-git-fcb9db398a5e3f0f0b28cd5428f2d8ca2b1dba41.tar.gz |
Fix the fix. Sorry for the commit noise.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files 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 |