diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-06-01 17:39:27 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-06-01 17:39:27 +0000 |
commit | d893468a0988c826c246c3212cb7731eddf427cc (patch) | |
tree | d6bd287c92ab68003d9f059f724b26d3608aee62 /configure.in | |
parent | 60a3d7ee193b5d45945dce4c72efe14915276d29 (diff) | |
download | emacs-d893468a0988c826c246c3212cb7731eddf427cc.tar.gz |
* configure.in (USE_LUCID, USE_MOTIF): Don't use "==".
* configure: Regenerate.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
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 |