From: Sascha Schumann Date: Thu, 30 Dec 1999 01:13:42 +0000 (+0000) Subject: Solaris' sed does not like this expression. Since -O0 is the default, X-Git-Tag: PRE_ISSET_TYPE~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d93da3c1c3839b12a9dd0226db0a97913d0c1e4b;p=php Solaris' sed does not like this expression. Since -O0 is the default, we can also omit it. --- diff --git a/Zend/Zend.m4 b/Zend/Zend.m4 index 5bb9f36dff..c2816402ad 100644 --- a/Zend/Zend.m4 +++ b/Zend/Zend.m4 @@ -170,7 +170,7 @@ fi changequote({,}) if test -n "$GCC" && test "$ZEND_INLINE_OPTIMIZATION" != "yes"; then - INLINE_CFLAGS="`echo $ac_n "$CFLAGS $ac_c"|sed 's/-O[0-9]*//'` -O0" + INLINE_CFLAGS=`echo $ac_n "$CFLAGS $ac_c" | sed s/-O[0-9]*//` else INLINE_CFLAGS="$CFLAGS" fi