From: Glenn Morris Date: Wed, 28 Apr 2010 15:58:29 +0000 (-0700) Subject: * configure.in (LIBXMU): Fix logic in previous change. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~351 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=363a7f8f472b70b3aad61794c0360c45769ac2d5;p=emacs.git * configure.in (LIBXMU): Fix logic in previous change. --- diff --git a/configure.in b/configure.in index e3f14b3282b..93cd86affb2 100644 --- a/configure.in +++ b/configure.in @@ -1896,7 +1896,7 @@ LIBXMU=-lXmu case "$machine" in ## These machines don't supply Xmu. hpux* | aix4-2 ) - test "X$ac_cv_lib_Xmu_XmuConvertStandardSelection" = "Xno" && LIBXMU= + test "X$ac_cv_lib_Xmu_XmuConvertStandardSelection" != "Xyes" && LIBXMU= ;; esac AC_SUBST(LIBXMU)