2008-02-13 Yoshinori K. Okuji <okuji@enbug.org>

* configure.ac: Only a cosmetic change on the handling of
      -fno-stack-protector.
This commit is contained in:
okuji 2008-02-13 03:35:48 +00:00
parent f714229e34
commit c3db83643a
7 changed files with 3610 additions and 4004 deletions

View file

@ -254,11 +254,11 @@ fi
# Smashing stack protector.
grub_CHECK_STACK_PROTECTOR
[# Need that, because some distributions ship compilers that include
# Need that, because some distributions ship compilers that include
# `-fstack-protector' in the default specs.
if [ x"$ssp_possible" = xyes ]; then
TARGET_CFLAGS=$TARGET_CFLAGS\ -fno-stack-protector
fi]
if test "x$ssp_possible" = xyes; then
TARGET_CFLAGS="$TARGET_CFLAGS -fno-stack-protector"
fi
AC_SUBST(TARGET_CFLAGS)
AC_SUBST(TARGET_CPPFLAGS)