This moves all the auxiliary build scripts into a build-aux directory, and fixes an issue with configure being unable to find scripts because it tries to change to an empty directory to get the absolute path, which results in getting the path to the user's home directory instead.
,-- checking whether build environment is sane... yes /bin/bash: /home/user/missing: No such file or directory configure: WARNING: 'missing' script is too old or missing `--- Signed-off-by: Guillem Jover <[email protected]> --- .gitignore | 8 +------- configure.ac | 1 + 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 111c56c..9ccac74 100644 --- a/.gitignore +++ b/.gitignore @@ -12,20 +12,14 @@ cscope.out .libs /aclocal.m4 /autom4te.cache -/compile -/config.guess +/build-aux/ /config.h /config.h.in /config.log /config.mk /config.status -/config.sub /configure -/depcomp -/install-sh /libtool -/ltmain.sh -/missing /stamp-h1 /test-driver /weston.ini diff --git a/configure.ac b/configure.ac index f190672..a9de41c 100644 --- a/configure.ac +++ b/configure.ac @@ -16,6 +16,7 @@ AC_SUBST([WESTON_VERSION_MINOR], [weston_minor_version]) AC_SUBST([WESTON_VERSION_MICRO], [weston_micro_version]) AC_SUBST([WESTON_VERSION], [weston_version]) +AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_HEADERS([config.h]) AC_USE_SYSTEM_EXTENSIONS -- 1.9.rc1.175.g0b1dcb5 _______________________________________________ wayland-devel mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/wayland-devel
