commit: c9db6f77c9c3de6eed60bdc366a6c5c0ffc1eeef Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org> AuthorDate: Fri Jan 22 19:58:55 2016 +0000 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org> CommitDate: Fri Jan 22 19:58:55 2016 +0000 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=c9db6f77
Add 70_mod_php.conf.in to EXTRA_DIST in Makefile.am. Without the extra hint, automake was omitting 70_mod_php.conf.in from the tarball. Makefile.am | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.am b/Makefile.am index f7ffabe..d9220bd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,9 @@ eselectdir = $(datadir)/eselect/modules nodist_eselect_DATA = $(srcdir)/src/php.eselect +# Without this, the conf input file doesn't wind up in the tarball. +EXTRA_DIST = $(srcdir)/src/70_mod_php.conf.in + if APACHE2 # Without these set, we won't try to install the conf file. apacheconfdir = $(sysconfdir)/apache2/modules.d
