diff options
author | Daniel Martin <consume.noise@gmail.com> | 2013-07-24 14:08:38 +0200 |
---|---|---|
committer | Daniel Martin <consume.noise@gmail.com> | 2013-08-15 00:35:07 +0200 |
commit | b6d8c8fe61f25e4eb7b43d3d9b1de81a1f0638a3 (patch) | |
tree | 3d5a8e81e4751052dd7571366b1ffb22e7a9b07c | |
parent | e3b34ad346efcaf0fd28b95e68d99388276802bc (diff) |
Set AC_CONFIG_AUX_DIR to build-aux
Do not clutter the project directory with generated/copied auxiliary
files, save them in ./build-aux.
Signed-off-by: Daniel Martin <consume.noise@gmail.com>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Uli Schlachter <psychon@znc.in>
Tested-By: Ran Benita <ran234@gmail.com>
-rw-r--r-- | .gitignore | 8 | ||||
-rw-r--r-- | configure.ac | 1 |
2 files changed, 2 insertions, 7 deletions
@@ -1,18 +1,12 @@ aclocal.m4 autom4te.cache -compile -depcomp -install-sh +build-aux libtool -ltmain.sh -missing mkinstalldirs -config.guess config.h config.h.in config.log config.status -config.sub configure configure.lineno .deps diff --git a/configure.ac b/configure.ac index 75af4ea..1aff958 100644 --- a/configure.ac +++ b/configure.ac @@ -6,6 +6,7 @@ AC_PREREQ([2.60]) AC_INIT([libxcb], 1.9, [xcb@lists.freedesktop.org]) +AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_SRCDIR([xcb.pc.in]) # Initialize Automake |