summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2008-06-01 17:39:27 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2008-06-01 17:39:27 +0000
commitdd183563b7a69cc6e4a826bdd8cf5c11cb608dd4 (patch)
tree12edf4e0f939f5282a4f186b2875f9a9b01592f9 /configure.in
parent8fdbd3e4ad06527fada089db7a0676cada44daab (diff)
downloademacs-dd183563b7a69cc6e4a826bdd8cf5c11cb608dd4.tar.gz
* configure.in (USE_LUCID, USE_MOTIF): Don't use "==".
* configure: Regenerate.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index dd81dc39aaa..c6b17dc8ae8 100644
--- a/configure.in
+++ b/configure.in
@@ -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