diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2020-01-21 20:03:56 -0500 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2020-01-22 09:59:25 -0500 |
commit | de0b86066071596bf780b8ba3855fef8a2fbc094 (patch) | |
tree | 653bc25105a73d52cd705f5ba5416ff5cc1efb8d | |
parent | Makefile.am: substitute @LIBEXECDIR@ in "*.in" files. (diff) | |
download | eselect-php-de0b86066071596bf780b8ba3855fef8a2fbc094.tar.gz eselect-php-de0b86066071596bf780b8ba3855fef8a2fbc094.tar.bz2 eselect-php-de0b86066071596bf780b8ba3855fef8a2fbc094.zip |
configure.ac: place build artifacts in the "build-aux" directory.
During the build, autotools generates a bunch of files that need a
place to live. By default, most of them (the "missing" script, for
example) wind up in the project root. This commit sets
AC_CONFIG_AUX_DIR([build-aux])
in configure.ac so that the aforementioned files are placed in the
build-aux directory instead.
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | configure.ac | 1 |
2 files changed, 2 insertions, 2 deletions
@@ -3,12 +3,11 @@ Makefile Makefile.in aclocal.m4 autom4te.cache/ +build-aux/ config.log config.status configure openrc/init.d/php-fpm openrc/init.d/php-fpm.in -install-sh -missing src/php.eselect src/php.eselect.in diff --git a/configure.ac b/configure.ac index 5c27275..715e7e2 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,5 @@ AC_INIT([eselect-php], [0.9.5]) +AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz]) AC_PROG_LN_S |