discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=db295ffaf79f661677ffd159012a9c60613c64f5
commit db295ffaf79f661677ffd159012a9c60613c64f5 Author: Chris Michael <[email protected]> Date: Sun Jul 6 10:11:04 2014 -0400 xwayland: Fix configure.ac to substitute the xwayland binary path Signed-off-by: Chris Michael <[email protected]> --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 4c15763..0c72375 100644 --- a/configure.ac +++ b/configure.ac @@ -889,7 +889,8 @@ 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 ], [HAVE_XWAYLAND_DEPS=true], [HAVE_XWAYLAND_DEPS=false]) - AC_PATH_PROGS([XWAYLAND_BIN], [Xwayland], [HAVE_XWAYLAND_DEPS=false], [/sbin:/usr/sbin:$PATH]) + AC_PATH_PROG([XWAYLAND_BIN], [Xwayland], [HAVE_XWAYLAND_DEPS=false], [/sbin:/usr/sbin:$PATH]) + AC_SUBST(XWAYLAND_BIN) else HAVE_XWAYLAND_DEPS=false fi --
