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: doc/, /
Date: Wed, 19 Jul 2017 14:11:20
Message-Id: 1500472964.41fa94bb1977c31b3a280005585187d00df2424e.mjo@gentoo
1 commit: 41fa94bb1977c31b3a280005585187d00df2424e
2 Author: Michael Orlitzky <michael <AT> orlitzky <DOT> com>
3 AuthorDate: Wed Jul 19 14:02:44 2017 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 19 14:02:44 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=41fa94bb
7
8 Rename the init script input file to facilitate the two-phase replacement.
9
10 We perform variable substitution twice in the main eselect script --
11 once through autotools, and the other manually in the resulting
12 Makefile. As a result, the script has a double "in.in" suffix. To make
13 substitution work the same way in the init script, this commit renames
14 it with an "in.in" suffix, and mentions it in configure.ac.
15
16 configure.ac | 2 +-
17 doc/{php-fpm.example.init.in => php-fpm.example.init.in.in} | 0
18 2 files changed, 1 insertion(+), 1 deletion(-)
19
20 diff --git a/configure.ac b/configure.ac
21 index d642dbd..9f8b4eb 100644
22 --- a/configure.ac
23 +++ b/configure.ac
24 @@ -22,6 +22,6 @@ AC_ARG_ENABLE(
25
26
27 # List of output files.
28 -AC_CONFIG_FILES([Makefile src/php.eselect.in])
29 +AC_CONFIG_FILES([Makefile src/php.eselect.in doc/php-fpm.example.init.in])
30
31 AC_OUTPUT
32
33 diff --git a/doc/php-fpm.example.init.in b/doc/php-fpm.example.init.in.in
34 similarity index 100%
35 rename from doc/php-fpm.example.init.in
36 rename to doc/php-fpm.example.init.in.in