diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2020-01-21 19:29:31 -0500 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2020-01-22 09:59:04 -0500 |
commit | b3a0380c97e279311c3c6ffa145f6ea31e429539 (patch) | |
tree | ebb8d8e7c1577891360a001fca16abba0092b236 | |
parent | configure.ac: update to version 0.9.5. (diff) | |
download | eselect-php-b3a0380c97e279311c3c6ffa145f6ea31e429539.tar.gz eselect-php-b3a0380c97e279311c3c6ffa145f6ea31e429539.tar.bz2 eselect-php-b3a0380c97e279311c3c6ffa145f6ea31e429539.zip |
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 <mjo@gentoo.org>
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
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' |