From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B87ED58974 for ; Fri, 22 Jan 2016 20:00:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F032B21C005; Fri, 22 Jan 2016 20:00:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 952A221C005 for ; Fri, 22 Jan 2016 20:00:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A82B1340A26 for ; Fri, 22 Jan 2016 20:00:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61F39FF9 for ; Fri, 22 Jan 2016 19:59:58 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1453492735.c9db6f77c9c3de6eed60bdc366a6c5c0ffc1eeef.mjo@gentoo> Subject: [gentoo-commits] proj/eselect-php:master commit in: / X-VCS-Repository: proj/eselect-php X-VCS-Files: Makefile.am X-VCS-Directories: / X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: c9db6f77c9c3de6eed60bdc366a6c5c0ffc1eeef X-VCS-Branch: master Date: Fri, 22 Jan 2016 19:59:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5d4d4df2-759f-4959-95c3-631b11f77576 X-Archives-Hash: 20d4cb3f224a56255d67727155413938 commit: c9db6f77c9c3de6eed60bdc366a6c5c0ffc1eeef Author: Michael Orlitzky gentoo org> AuthorDate: Fri Jan 22 19:58:55 2016 +0000 Commit: Michael Orlitzky gentoo 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