discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=5637f34df99ffe21b85453ba73e448175bdff2e3
commit 5637f34df99ffe21b85453ba73e448175bdff2e3 Author: Mike Blumenkrantz <[email protected]> Date: Tue Apr 28 14:10:00 2015 -0400 fix xwayland configure check --- configure.ac | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index c9cb96b..54ffb68 100644 --- a/configure.ac +++ b/configure.ac @@ -889,13 +889,12 @@ define([CHECK_MODULE_XWAYLAND], [ if test "x${e_cv_want_wayland_only}" = "xyes"; then AC_E_CHECK_PKG(XWAYLAND, [ ecore >= $efl_version eina >= $efl_version xcb xcb-xfixes xcb-composite xcursor ], [HAVE_XWAYLAND_DEPS=true], [HAVE_XWAYLAND_DEPS=false]) - AC_PATH_PROG([XWAYLAND_BIN], [Xwayland], [HAVE_XWAYLAND_DEPS=false], [/sbin:/usr/sbin:$PATH]) - AC_SUBST(XWAYLAND_BIN) + AC_PATH_PROG([XWAYLAND_BIN], [Xwayland], [false]) else HAVE_XWAYLAND_DEPS=false fi ]) -AM_CONDITIONAL([HAVE_XWAYLAND], [test "x${HAVE_XWAYLAND_DEPS}" = "xtrue"]) +AM_CONDITIONAL([HAVE_XWAYLAND], [test "x${XWAYLAND_BIN}" != "xfalse"]) AC_E_OPTIONAL_MODULE([ibar], true) AC_E_OPTIONAL_MODULE([clock], true) --
