* top/maint.mk (web-manual): Propagate MAKEINFO explicitly, rather than requiring it exported in the environment, which can be awkward on Solaris make for example. --- ChangeLog | 7 +++++++ top/maint.mk | 1 + 2 files changed, 8 insertions(+)
diff --git a/ChangeLog b/ChangeLog index 6acf890d4d..511bf124a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2026-02-02 Pádraig Brady <[email protected]> + + maintainer-makefile: propagate MAKEINFO to gendocs + * top/maint.mk (web-manual): Propagate MAKEINFO explicitly, + rather than requiring it exported in the environment, + which can be awkward on Solaris make for example. + 2026-01-29 Bruno Haible <[email protected]> gettext: Partially update to gettext 1.0. diff --git a/top/maint.mk b/top/maint.mk index ad60c8fb11..3475f3733c 100644 --- a/top/maint.mk +++ b/top/maint.mk @@ -1740,6 +1740,7 @@ web-manual: $(AM_V_GEN)test -z "$(manual_title)" \ && { echo define manual_title in cfg.mk 1>&2; exit 1; } || : $(AM_V_at)cd '$(srcdir)/doc'; \ + MAKEINFO="$(MAKEINFO)" \ $(SHELL) ../$(_build-aux)/gendocs.sh $(gendocs_options_) \ -o '$(abs_builddir)/doc/manual' \ --email $(PACKAGE_BUGREPORT) $(PACKAGE) \ -- 2.52.0
