diff configure.in @ 95462:6b06cfc96ec7

* configure.in (USE_LUCID, USE_MOTIF): Don't use "==". * configure: Regenerate.
author Dan Nicolaescu <dann@ics.uci.edu>
date Sun, 01 Jun 2008 17:39:27 +0000
parents 73aea1b3e254
children 0d318323f2b7
line wrap: on
line diff
--- a/configure.in	Sun Jun 01 16:59:27 2008 +0000
+++ b/configure.in	Sun Jun 01 17:39:27 2008 +0000
@@ -2657,9 +2657,9 @@
 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