summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorGwynne Raskind <gwynne@php.net>2008-04-01 02:41:16 +0000
committerGwynne Raskind <gwynne@php.net>2008-04-01 02:41:16 +0000
commitfcb9db398a5e3f0f0b28cd5428f2d8ca2b1dba41 (patch)
tree633319877316ce519e4026eea9b07446555f7a0d /configure.in
parentb9907f55ddf3c810329ff2afc59a2d2bd11bfa1b (diff)
downloadphp-git-fcb9db398a5e3f0f0b28cd5428f2d8ca2b1dba41.tar.gz
Fix the fix. Sorry for the commit noise.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
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