2009-07-16 Pavel Roskin <proski@gnu.org>

* configure.ac: Fix incorrect comparison for grub_cv_cc_efiemu.
This commit is contained in:
proski 2009-07-16 22:43:58 +00:00
parent 43e6200c73
commit 55c7090456
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
2009-07-16 Pavel Roskin <proski@gnu.org> 2009-07-16 Pavel Roskin <proski@gnu.org>
* configure.ac: Fix incorrect comparison for grub_cv_cc_efiemu.
* configure.ac: Fix wrong use of grub_cv_cc_no_red_zone where * configure.ac: Fix wrong use of grub_cv_cc_no_red_zone where
grub_cv_cc_efiemu should be used. grub_cv_cc_efiemu should be used.

View file

@ -447,7 +447,7 @@ if test x"$efiemu_excuse" = x ; then
[grub_cv_cc_efiemu=yes], [grub_cv_cc_efiemu=yes],
[grub_cv_cc_efiemu=no]) [grub_cv_cc_efiemu=no])
]) ])
if test x$grub_cv_cc_efiemu = x$no; then if test x$grub_cv_cc_efiemu = xno; then
efiemu_excuse="compiler doesn't support compiling with -m64 -mcmodel=large -mno-red-zone -nostdlib -c" efiemu_excuse="compiler doesn't support compiling with -m64 -mcmodel=large -mno-red-zone -nostdlib -c"
fi fi
fi fi