Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/eselect-php:master commit in: /
Date: Wed, 22 Jan 2020 15:00:25
Message-Id: 1579705144.b3a0380c97e279311c3c6ffa145f6ea31e429539.mjo@gentoo
1 commit: b3a0380c97e279311c3c6ffa145f6ea31e429539
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 22 00:29:31 2020 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 22 14:59:04 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=b3a0380c
7
8 Makefile.am: substitute @LIBEXECDIR <AT> in "*.in" files.
9
10 We're already substituting a few other GNU directories, and we'll
11 need the libexecdir in the future.
12
13 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
14
15 Makefile.am | 1 +
16 1 file changed, 1 insertion(+)
17
18 diff --git a/Makefile.am b/Makefile.am
19 index 1d3122a..f351b49 100644
20 --- a/Makefile.am
21 +++ b/Makefile.am
22 @@ -25,6 +25,7 @@ endif
23 # "Installation Directory Variables" section.
24 edit = sed -e 's|@BINDIR[@]|$(bindir)|g' \
25 -e 's|@LIBDIR[@]|$(libdir)|g' \
26 + -e 's|@LIBEXECDIR[@]|$(libexecdir)|g' \
27 -e 's|@LOCALSTATEDIR[@]|$(localstatedir)|g' \
28 -e 's|@SYSCONFDIR[@]|$(sysconfdir)|g'