changeset 1705:49460282eed9

Remove some bashisms from configure.in. Patch by Greg Troxel.
author zas_
date Sat, 25 Jul 2009 08:13:13 +0000
parents ffe1f5787a89
children 3c5e737badf4
files configure.in
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/configure.in	Sat Jul 25 08:00:07 2009 +0000
+++ b/configure.in	Sat Jul 25 08:13:13 2009 +0000
@@ -79,7 +79,7 @@
 
 if test "x${enable_debug_flags}" != "xno"
 then
-  if test "x${enable_developer}" == "xyes"
+  if test "x${enable_developer}" = "xyes"
   then
     CXXFLAGS="${CXXFLAGS} -Wall"
     CFLAGS="${CFLAGS} -Wstrict-prototypes -Wall"
@@ -342,7 +342,7 @@
   AC_HELP_STRING([--enable-gps], [enable GPS map support - experimental]),
     [libgps=$enableval], [libgps=auto])
 
-if test "x${libgps}" == "xyes"; then
+if test "x${libgps}" = "xyes"; then
   PKG_CHECK_MODULES(LIBCHAMPLAIN, [champlain-0.3 >= 0.3],
     [
       HAVE_LIBCHAMPLAIN=yes
@@ -356,7 +356,7 @@
   HAVE_LIBCHAMPLAIN=disabled
 fi
 
-if test "x${libgps}" == "xyes"; then
+if test "x${libgps}" = "xyes"; then
   PKG_CHECK_MODULES(LIBCHAMPLAIN_GTK, [champlain-gtk-0.3 >= 0.3],
     [
       HAVE_LIBCHAMPLAIN_GTK=yes