build: Set a default aux dir
authorGuillem Jover <guillem@hadrons.org>
Sat, 1 Feb 2014 17:48:43 +0000 (18:48 +0100)
committerKristian Høgsberg <krh@bitplanet.net>
Sun, 2 Feb 2014 06:12:10 +0000 (22:12 -0800)
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 <guillem@hadrons.org>
.gitignore
configure.ac

index 19ff60f..3909aa4 100644 (file)
@@ -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
index 9862761..00d7123 100644 (file)
@@ -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