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>
This commit is contained in:
parent
e3b34ad346
commit
b6d8c8fe61
|
@ -1,18 +1,12 @@
|
||||||
aclocal.m4
|
aclocal.m4
|
||||||
autom4te.cache
|
autom4te.cache
|
||||||
compile
|
build-aux
|
||||||
depcomp
|
|
||||||
install-sh
|
|
||||||
libtool
|
libtool
|
||||||
ltmain.sh
|
|
||||||
missing
|
|
||||||
mkinstalldirs
|
mkinstalldirs
|
||||||
config.guess
|
|
||||||
config.h
|
config.h
|
||||||
config.h.in
|
config.h.in
|
||||||
config.log
|
config.log
|
||||||
config.status
|
config.status
|
||||||
config.sub
|
|
||||||
configure
|
configure
|
||||||
configure.lineno
|
configure.lineno
|
||||||
.deps
|
.deps
|
||||||
|
|
|
@ -6,6 +6,7 @@ AC_PREREQ([2.60])
|
||||||
AC_INIT([libxcb],
|
AC_INIT([libxcb],
|
||||||
1.9,
|
1.9,
|
||||||
[xcb@lists.freedesktop.org])
|
[xcb@lists.freedesktop.org])
|
||||||
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
AC_CONFIG_SRCDIR([xcb.pc.in])
|
AC_CONFIG_SRCDIR([xcb.pc.in])
|
||||||
|
|
||||||
# Initialize Automake
|
# Initialize Automake
|
||||||
|
|
Loading…
Reference in New Issue