]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-06-16 Pavel Roskin <proski@gnu.org>
authorproski <proski@localhost>
Mon, 15 Jun 2009 22:45:17 +0000 (22:45 +0000)
committerproski <proski@localhost>
Mon, 15 Jun 2009 22:45:17 +0000 (22:45 +0000)
* configure.ac: Avoid '==' in test command, it's not portable.

ChangeLog
configure.ac

index e86f952376b0b47decd214a9b98ca29abad8ee7b..5549c4cfdeac0de70e16669fc116602ebd2be760 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-06-16  Pavel Roskin  <proski@gnu.org>
+
+       * configure.ac: Avoid '==' in test command, it's not portable.
+
 2009-06-16  Vladimir Serbinenko  <phcoder@gmail.com>
 
        Probe command
index b0f7bb7280cb29d35619cd00caee010d14982493..371c32d03ba17ce349838eadb809da9f2e68bcbb 100644 (file)
@@ -164,7 +164,7 @@ AC_CHECK_SIZEOF(void *)
 AC_CHECK_SIZEOF(long)
 
 grub_apple_cc
-if test x$grub_cv_apple_cc == xyes ; then
+if test x$grub_cv_apple_cc = xyes ; then
   CFLAGS="$CFLAGS -DAPPLE_CC=1 -fnested-functions"
   ASFLAGS="$ASFLAGS -DAPPLE_CC=1"
 fi
@@ -273,7 +273,7 @@ if test "x$TARGET_CFLAGS" = x; then
 fi
 
 grub_apple_target_cc
-if test x$grub_cv_apple_target_cc == xyes ; then
+if test x$grub_cv_apple_target_cc = xyes ; then
   TARGET_CFLAGS="$TARGET_CFLAGS -DAPPLE_CC=1 -fnested-functions"
   CFLAGS="$CFLAGS -DAPPLE_CC=1 -fnested-functions"
   TARGET_ASFLAGS="$TARGET_ASFLAGS -DAPPLE_CC=1"