From 8cfe3c367df66bcb27cab3868190de3a18538fff Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 19 Jul 2017 09:55:54 -0400 Subject: php-fpm.example.init.in: use @SYSCONFDIR@ from autotools. --- Makefile.am | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 578062e..eb3b89b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -12,19 +12,20 @@ if APACHE2 nodist_apacheconf_DATA = $(srcdir)/src/70_mod_php.conf endif -# The next few rules allow us to replace bindir, libdir, and -# localstatedir within our script and conf file. The example is taken +# The next few rules allow us to replace bindir, libdir, etc. +# within our script and conf file. The example is taken # from the autoconf documentation and can be found in the # "Installation Directory Variables" section. edit = sed -e 's|@BINDIR[@]|$(bindir)|g' \ -e 's|@LIBDIR[@]|$(libdir)|g' \ - -e 's|@LOCALSTATEDIR[@]|$(localstatedir)|g' + -e 's|@LOCALSTATEDIR[@]|$(localstatedir)|g' \ + -e 's|@SYSCONFDIR[@]|$(sysconfdir)|g' $(nodist_eselect_DATA) $(nodist_apacheconf_DATA) $(nodist_init_DATA): Makefile rm -f $@ $@.tmp srcdir=''; \ test -f ./$@.in || srcdir=$(srcdir)/; \ - $(edit) $${srcdir}$@.in > $@.tmp + $(edit) $${srcdir}$@.in > $@.tmp mv $@.tmp $@ $(srcdir)/src/php.eselect: $(srcdir)/src/php.eselect.in -- cgit v1.2.3-65-gdbad