From 1f9d4f9cf91bc7c7a1e75150fddaa632dde72d37 Mon Sep 17 00:00:00 2001 From: Derek Foreman Date: Mon, 9 Feb 2015 09:57:28 -0600 Subject: [PATCH] configure.ac: Don't look for Xwayland in the weston install destination Xwayland isn't part of this distribution so looking for Xwayland in weston's install dir will cause distcheck to fail. Let's set the default to /usr/bin where it's likely to live. It can still be overriden during configure exactly as before. Signed-off-by: Derek Foreman Reviewed-by: Daniel Stone --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 1db9f79..e5f395f 100644 --- a/configure.ac +++ b/configure.ac @@ -100,7 +100,7 @@ if test x$enable_xwayland = xyes; then AC_ARG_WITH(xserver-path, AS_HELP_STRING([--with-xserver-path=PATH], [Path to X server]), [XSERVER_PATH="$withval"], - [XSERVER_PATH="$bindir/Xwayland"]) + [XSERVER_PATH="/usr/bin/Xwayland"]) AC_SUBST([XSERVER_PATH]) if test x$enable_xwayland_test = xyes; then PKG_CHECK_MODULES([XWAYLAND_TEST], x11) -- 2.7.4