xwayland: Fix configure.ac to substitute the xwayland binary path

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-07-06 10:11:04 -04:00 committed by Mike Blumenkrantz
parent 2724f92bc6
commit db295ffaf7
1 changed files with 2 additions and 1 deletions

View File

@ -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