]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* man/Makefile.am (.x.1): Use @PATH_SEPARATOR@, not ':' to set up
authorTim Van Holder <tim.van.holder@pandora.be>
Thu, 20 Sep 2001 15:00:13 +0000 (15:00 +0000)
committerTim Van Holder <tim.van.holder@pandora.be>
Thu, 20 Sep 2001 15:00:13 +0000 (15:00 +0000)
  $PATH.  Also set AUTOM4TE_CFG, so we can process autom4te properly.

ChangeLog
man/Makefile.am

index 5688adf3fba9f90ae08a50d790b3f2bb17e65d8f..83f41360a7ee419c503017c4ce979926c74931f4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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'.
index 464faf0de5c7da9007fdc4842e4e0f30585e418b..03e19a194fd8fb7e81eaef69c39517d44fff9837 100644 (file)
@@ -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 \