]> code.delx.au - gnu-emacs/commitdiff
* configure.in (USE_LUCID, USE_MOTIF): Don't use "==".
authorDan Nicolaescu <dann@ics.uci.edu>
Sun, 1 Jun 2008 17:39:27 +0000 (17:39 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Sun, 1 Jun 2008 17:39:27 +0000 (17:39 +0000)
* configure: Regenerate.

ChangeLog
configure.in

index 50bfa20065abb32c28e8d5f911ae75f972f1b44e..53c7e220901815bd2162254b86b2cdd27d465a25 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-06-01  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * configure.in (USE_LUCID, USE_MOTIF): Don't use "==".
+       * configure: Regenerate.
+
 2008-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * update-subdirs: Don't touch subdirs.el if it is unchanged.
index dd81dc39aaa19ac843d9927d7579210bd2f25f54..c6b17dc8ae84cbe69f3e12631c7804981d6d0636 100644 (file)
@@ -2657,9 +2657,9 @@ if test "${HAVE_X_WINDOWS}" = "yes" ; then
 fi
 if test "${USE_X_TOOLKIT}" != "none" ; then
   AC_DEFINE(USE_X_TOOLKIT, 1, [Define to 1 if using an X toolkit.])
-  if test "${USE_X_TOOLKIT}" == "LUCID"; then
+  if test "${USE_X_TOOLKIT}" = "LUCID"; then
     AC_DEFINE(USE_LUCID, 1, [Define to 1 if using the Lucid X toolkit.])
-  elif test "${USE_X_TOOLKIT}" == "MOTIF"; then
+  elif test "${USE_X_TOOLKIT}" = "MOTIF"; then
     AC_DEFINE(USE_MOTIF, 1, [Define to 1 if using the Motif X toolkit.])
   fi
 fi