Bug 716663: Fix check for PR49911 to use "=" instead of "==" for string-equality-check with 'test'. r=respindola

This commit is contained in:
Daniel Holbert 2012-01-09 14:17:00 -08:00
parent 210cebd705
commit ec7f7986d7
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ CXXFLAGS="$_SAVE_CXXFLAGS"
AC_LANG_RESTORE
if test "$ac_have_gcc_pr49911" == "yes"; then
if test "$ac_have_gcc_pr49911" = "yes"; then
AC_MSG_RESULT(yes)
CFLAGS="$CFLAGS -fno-tree-vrp"
CXXFLAGS="$CXXFLAGS -fno-tree-vrp"

View File

@ -56,7 +56,7 @@ CXXFLAGS="$_SAVE_CXXFLAGS"
AC_LANG_RESTORE
if test "$ac_have_gcc_pr49911" == "yes"; then
if test "$ac_have_gcc_pr49911" = "yes"; then
AC_MSG_RESULT(yes)
CFLAGS="$CFLAGS -fno-tree-vrp"
CXXFLAGS="$CXXFLAGS -fno-tree-vrp"