Make sure that --disable-optimization works in its attempt to replace -Ox with -O0.

This commit is contained in:
Andrey Jivsov 2011-01-05 17:31:47 -08:00
parent 7d24ffaf80
commit 7bbc07fde0
1 changed files with 1 additions and 1 deletions

View File

@ -1466,7 +1466,7 @@ AC_ARG_ENABLE(optimization,
AC_HELP_STRING([--disable-optimization],
[disable compiler optimization]),
[if test $enableval = no ; then
CFLAGS=`echo $CFLAGS | sed 's/-O[[0-9]]//'`
CFLAGS=`echo $CFLAGS | sed s/-O[[1-9]]\ /-O0\ /g`
fi])
#