You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
buildsys: fix %pkglibexecdir% leaking into man pages in some cases
The generated "doc/man/es/Makefile" contains
pkglibexecdir = $(libexecdir)/mc
libexecdir = ${exec_prefix}/libexec
SED_PARAMETERS = \
... \
-e "s{%libexecdir%{${exec_prefix}/libexec{g" \
-e "s{%pkglibexecdir%{@pkglibexecdir@{g" \
I think "@pkglibexecdir@" is an Automake macro that should have been expanded
when generating this Makefile.
When I install from source, this leads to
$ man mc | grep bash
shell to the last directory Midnight Commander was in. Source the file @pkglibexecdir@/mc.sh (bash and zsh
Fix that by using the Make variables.
Regression introduced in 4583127.
Signed-off-by: Johannes Altmanninger <aclopte@gmail.com>
Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
0 commit comments