mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-18 12:00:31 +01:00
configure: Fix typo in libXmu check.
As the literal string "wm_cv_xext_xmu" will never be equal to "xno", we always ran the code that was supposed to run when the variable $wm_cv_xext_xmu was not equal to "no". In particular, if libXmu was not found, then we proceeded as if it had been found.
This commit is contained in:
committed by
Carlos R. Mafra
parent
54a24ab6f7
commit
e314f10909
@@ -108,7 +108,7 @@ Atom prop;
|
||||
CFLAGS="$wm_save_CFLAGS"])
|
||||
])
|
||||
dnl The cached check already reported problems when not found
|
||||
AS_IF([test "wm_cv_xext_xmu" = "xno"],
|
||||
AS_IF([test "x$wm_cv_xext_xmu" = "xno"],
|
||||
[LIBXMU=""
|
||||
unsupported="$unsupported Xmu"],
|
||||
[AC_DEFINE([HAVE_LIBXMU], [1],
|
||||
|
||||
Reference in New Issue
Block a user