From b3a0380c97e279311c3c6ffa145f6ea31e429539 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 21 Jan 2020 19:29:31 -0500 Subject: 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 --- 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' -- cgit v1.2.3-65-gdbad