Browse Source

Solaris' sed does not like this expression. Since -O0 is the default,

we can also omit it.
PHP-4.0.5
Sascha Schumann 26 years ago
parent
commit
d93da3c1c3
  1. 2
      Zend/Zend.m4

2
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

Loading…
Cancel
Save