1
0
mirror of https://https.git.savannah.gnu.org/git/gnulib.git synced 2026-04-28 06:33:36 +00:00

gendocs: support compound $MAKEINFO

* build-aux/gendocs.sh: Use eval consistently with $MAKEINFO,
to support it being a compound command.  In coreutils at least,
it has the value: SHELL='/bin/sh' build-aux/makeinfo-wrapper.sh
Reported by Collin Funk.
This commit is contained in:
Pádraig Brady
2026-02-07 21:10:47 +00:00
parent 83730551b4
commit d2c845c863
2 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,11 @@
2026-02-07 Pádraig Brady <P@draigBrady.com>
gendocs: support compound $MAKEINFO
* build-aux/gendocs.sh: Use eval consistently with $MAKEINFO,
to support it being a compound command. In coreutils at least,
it has the value: SHELL='/bin/sh' build-aux/makeinfo-wrapper.sh
Reported by Collin Funk.
2026-02-04 Pádraig Brady <P@draigBrady.com>
maintainer-makefile: propagate MAKEINFO to gendocs

View File

@@ -424,7 +424,7 @@ d=`dirname $srcfile`
# Omit patterns that do not expand to file names.
pats=
if case `$MAKEINFO --version | sed -e 's/^[^0-9]*//' -e 1q` in \
if case `eval $MAKEINFO --version | sed -e 's/^[^0-9]*//' -e 1q` in \
[1-6]* | 7.[01]*) false;; \
*) true;; \
esac \