]> git.proxmox.com Git - grub2.git/commitdiff
2009-07-16 Pavel Roskin <proski@gnu.org>
authorproski <proski@localhost>
Thu, 16 Jul 2009 22:43:58 +0000 (22:43 +0000)
committerproski <proski@localhost>
Thu, 16 Jul 2009 22:43:58 +0000 (22:43 +0000)
* configure.ac: Fix incorrect comparison for grub_cv_cc_efiemu.

ChangeLog
configure.ac

index 56099da61a94a1c1d33573d794b664acdb44a89e..ac76fc0916ee02bdc097b2a5a83ad9b77be37ddd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 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
        grub_cv_cc_efiemu should be used.
 
index 8da8a0a4f42983992fa4a3bb8c070799572815fe..34af5f58eea2009abc4bad37ddd02ec2c43838c0 100644 (file)
@@ -447,7 +447,7 @@ if test x"$efiemu_excuse" = x ; then
                      [grub_cv_cc_efiemu=yes],
                      [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"
   fi
 fi