From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 26998139694 for ; Wed, 26 Jul 2017 00:05:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91EECE0E7B; Wed, 26 Jul 2017 00:05:36 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 73A51E0E7B for ; Wed, 26 Jul 2017 00:05:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A03FF341865 for ; Wed, 26 Jul 2017 00:05:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4318774C4 for ; Wed, 26 Jul 2017 00:05:29 +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: <1501027415.cb16f05a22acaf933a4204f6fa1d6bc3eb1a966a.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: cb16f05a22acaf933a4204f6fa1d6bc3eb1a966a X-VCS-Branch: master Date: Wed, 26 Jul 2017 00:05:29 +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: 111cad57-7f0a-43b6-9216-091a285c4489 X-Archives-Hash: e4b333e4776d43d99c1658083500ea9f commit: cb16f05a22acaf933a4204f6fa1d6bc3eb1a966a Author: Michael Orlitzky gentoo org> AuthorDate: Wed Jul 26 00:03:35 2017 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Wed Jul 26 00:03:35 2017 +0000 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=cb16f05a Makefile.am: mark openrc/php-fpm as a script and not as data. Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 1abef9e..15b0ca8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,7 +2,7 @@ eselectdir = $(datadir)/eselect/modules nodist_eselect_DATA = $(srcdir)/src/php.eselect initdir = $(sysconfdir)/init.d confdir = $(sysconfdir)/conf.d -nodist_init_DATA = $(srcdir)/openrc/php-fpm +nodist_init_SCRIPTS = $(srcdir)/openrc/php-fpm nodist_conf_DATA = $(srcdir)/openrc/php-fpm.conf # Without EXTRA_DIST, these files don't wind up in the tarball. @@ -23,7 +23,7 @@ edit = sed -e 's|@BINDIR[@]|$(bindir)|g' \ -e 's|@LOCALSTATEDIR[@]|$(localstatedir)|g' \ -e 's|@SYSCONFDIR[@]|$(sysconfdir)|g' -$(nodist_eselect_DATA) $(nodist_apacheconf_DATA) $(nodist_init_DATA): Makefile +$(nodist_eselect_DATA) $(nodist_apacheconf_DATA) $(nodist_init_SCRIPTS): Makefile rm -f $@ $@.tmp srcdir=''; \ test -f ./$@.in || srcdir=$(srcdir)/; \