gwynne          Tue Apr  1 02:41:16 2008 UTC

  Modified files:              
    /php-src    configure.in 
  Log:
  Fix the fix. Sorry for the commit noise.
  
http://cvs.php.net/viewvc.cgi/php-src/configure.in?r1=1.651&r2=1.652&diff_format=u
Index: php-src/configure.in
diff -u php-src/configure.in:1.651 php-src/configure.in:1.652
--- php-src/configure.in:1.651  Tue Apr  1 02:39:17 2008
+++ php-src/configure.in        Tue Apr  1 02:41:16 2008
@@ -1,4 +1,4 @@
-## $Id: configure.in,v 1.651 2008/04/01 02:39:17 gwynne Exp $ -*- autoconf -*-
+## $Id: configure.in,v 1.652 2008/04/01 02:41:16 gwynne Exp $ -*- autoconf -*-
 dnl ## Process this file with autoconf to produce a configure script.
 
 divert(1)
@@ -1260,9 +1260,9 @@
 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
 



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to