Revision: 2329
http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2329
Author: proski
Date: 2009-06-15 22:45:17 +0000 (Mon, 15 Jun 2009)
Log Message:
-----------
2009-06-16 Pavel Roskin <[email protected]>
* configure.ac: Avoid '==' in test command, it's not portable.
Modified Paths:
--------------
trunk/grub2/ChangeLog
trunk/grub2/configure.ac
Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog 2009-06-15 22:41:42 UTC (rev 2328)
+++ trunk/grub2/ChangeLog 2009-06-15 22:45:17 UTC (rev 2329)
@@ -1,3 +1,7 @@
+2009-06-16 Pavel Roskin <[email protected]>
+
+ * configure.ac: Avoid '==' in test command, it's not portable.
+
2009-06-16 Vladimir Serbinenko <[email protected]>
Probe command
Modified: trunk/grub2/configure.ac
===================================================================
--- trunk/grub2/configure.ac 2009-06-15 22:41:42 UTC (rev 2328)
+++ trunk/grub2/configure.ac 2009-06-15 22:45:17 UTC (rev 2329)
@@ -164,7 +164,7 @@
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 @@
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"