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 B4DDB138350 for ; Wed, 22 Jan 2020 15:00:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A95F3E08F5; Wed, 22 Jan 2020 15:00:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 93445E08F5 for ; Wed, 22 Jan 2020 15:00:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 BF0E134E331 for ; Wed, 22 Jan 2020 15:00:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C66535 for ; Wed, 22 Jan 2020 15:00:07 +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: <1579705144.b3a0380c97e279311c3c6ffa145f6ea31e429539.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: b3a0380c97e279311c3c6ffa145f6ea31e429539 X-VCS-Branch: master Date: Wed, 22 Jan 2020 15:00:07 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 41b48b16-709b-480b-9553-d1261e31050a X-Archives-Hash: 4cfac348e6ab96214cab5242ac6372b0 commit: b3a0380c97e279311c3c6ffa145f6ea31e429539 Author: Michael Orlitzky gentoo org> AuthorDate: Wed Jan 22 00:29:31 2020 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Wed Jan 22 14:59:04 2020 +0000 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=b3a0380c Makefile.am: substitute @LIBEXECDIR in "*.in" files. We're already substituting a few other GNU directories, and we'll need the libexecdir in the future. Signed-off-by: Michael Orlitzky gentoo.org> Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.am b/Makefile.am index 1d3122a..f351b49 100644 --- a/Makefile.am +++ b/Makefile.am @@ -25,6 +25,7 @@ endif # "Installation Directory Variables" section. edit = sed -e 's|@BINDIR[@]|$(bindir)|g' \ -e 's|@LIBDIR[@]|$(libdir)|g' \ + -e 's|@LIBEXECDIR[@]|$(libexecdir)|g' \ -e 's|@LOCALSTATEDIR[@]|$(localstatedir)|g' \ -e 's|@SYSCONFDIR[@]|$(sysconfdir)|g'