2
0
mirror of git://git.sv.gnu.org/autoconf synced 2025-03-19 14:40:24 +08:00

* man/Makefile.am (.x.1): Use @PATH_SEPARATOR@, not ':' to set up

$PATH.  Also set AUTOM4TE_CFG, so we can process autom4te properly.
This commit is contained in:
Tim Van Holder 2001-09-20 15:00:13 +00:00
parent 79bc254fde
commit df7160f880
2 changed files with 10 additions and 3 deletions

@ -1,3 +1,8 @@
2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
* man/Makefile.am (.x.1): Use @PATH_SEPARATOR@, not ':' to set up
$PATH. Also set AUTOM4TE_CFG, so we can process autom4te properly.
2001-09-20 Tim Van Holder <tim.van.holder@pandora.be>
* bin/autoscan.in: Add 'exec-perl-if-not-run-by-perl'.

@ -46,10 +46,12 @@ SUFFIXES = .x .1
.x.1:
echo "Updating man page $@"
PATH=$(top_builddir)/bin:$(top_srcdir)/config:$$PATH ;\
export PATH ;\
autom4te_perllibdir=$(top_srcdir)/lib;\
PATH="$(top_builddir)/bin@PATH_SEPARATOR@$(top_srcdir)/config@PATH_SEPARATOR@$$PATH"; \
export PATH; \
autom4te_perllibdir=$(top_srcdir)/lib; \
export autom4te_perllibdir; \
AUTOM4TE_CFG=$(top_srcdir)/lib/autom4te.cfg; \
export AUTOM4TE_CFG; \
$(HELP2MAN) \
--include=$(srcdir)/$*.x \
--include=$(srcdir)/common.x \