From d893468a0988c826c246c3212cb7731eddf427cc Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Sun, 1 Jun 2008 17:39:27 +0000 Subject: [PATCH] * configure.in (USE_LUCID, USE_MOTIF): Don't use "==". * configure: Regenerate. --- ChangeLog | 5 +++++ configure.in | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 50bfa20065a..53c7e220901 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-06-01 Dan Nicolaescu + + * configure.in (USE_LUCID, USE_MOTIF): Don't use "==". + * configure: Regenerate. + 2008-05-28 Stefan Monnier * update-subdirs: Don't touch subdirs.el if it is unchanged. 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 -- 2.39.2