From b6d8c8fe61f25e4eb7b43d3d9b1de81a1f0638a3 Mon Sep 17 00:00:00 2001 From: Daniel Martin Date: Wed, 24 Jul 2013 14:08:38 +0200 Subject: [PATCH 1/1] 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 Reviewed-by: Alan Coopersmith Reviewed-by: Uli Schlachter Tested-By: Ran Benita --- .gitignore | 8 +------- configure.ac | 1 + 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index a922ee4..62cd76e 100644 --- a/.gitignore +++ b/.gitignore @@ -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 -- 2.34.1