Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/eselect-php:master commit in: /
Date: Wed, 22 Jan 2020 15:00:25
Message-Id: 1579705165.de0b86066071596bf780b8ba3855fef8a2fbc094.mjo@gentoo
1 commit: de0b86066071596bf780b8ba3855fef8a2fbc094
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 22 01:03:56 2020 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 22 14:59:25 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=de0b8606
7
8 configure.ac: place build artifacts in the "build-aux" directory.
9
10 During the build, autotools generates a bunch of files that need a
11 place to live. By default, most of them (the "missing" script, for
12 example) wind up in the project root. This commit sets
13
14 AC_CONFIG_AUX_DIR([build-aux])
15
16 in configure.ac so that the aforementioned files are placed in the
17 build-aux directory instead.
18
19 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
20
21 .gitignore | 3 +--
22 configure.ac | 1 +
23 2 files changed, 2 insertions(+), 2 deletions(-)
24
25 diff --git a/.gitignore b/.gitignore
26 index 5a461dd..97ae412 100644
27 --- a/.gitignore
28 +++ b/.gitignore
29 @@ -3,12 +3,11 @@ Makefile
30 Makefile.in
31 aclocal.m4
32 autom4te.cache/
33 +build-aux/
34 config.log
35 config.status
36 configure
37 openrc/init.d/php-fpm
38 openrc/init.d/php-fpm.in
39 -install-sh
40 -missing
41 src/php.eselect
42 src/php.eselect.in
43
44 diff --git a/configure.ac b/configure.ac
45 index 5c27275..715e7e2 100644
46 --- a/configure.ac
47 +++ b/configure.ac
48 @@ -1,4 +1,5 @@
49 AC_INIT([eselect-php], [0.9.5])
50 +AC_CONFIG_AUX_DIR([build-aux])
51 AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz])
52
53 AC_PROG_LN_S