* configure.ac: Avoid '==' in test command, it's not portable.
+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
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
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"