texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: * doc/Makefile.am (MAKEINFO_ENVIRONMENT): Do not


From: Gavin D. Smith
Subject: branch master updated: * doc/Makefile.am (MAKEINFO_ENVIRONMENT): Do not use shell export statements as this may lead to the same problem experienced with TEXI2DVI_ENVIRONMENT.
Date: Mon, 14 Aug 2023 09:51:10 -0400

This is an automated email from the git hooks/post-receive script.

gavin pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new 38ad6acb93 * doc/Makefile.am (MAKEINFO_ENVIRONMENT): Do not use shell 
export statements as this may lead to the same problem experienced with 
TEXI2DVI_ENVIRONMENT.
38ad6acb93 is described below

commit 38ad6acb939c53c35743db5a7f85d06c3937be6f
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Mon Aug 14 14:51:03 2023 +0100

    * doc/Makefile.am (MAKEINFO_ENVIRONMENT): Do not use shell
    export statements as this may lead to the same problem experienced
    with TEXI2DVI_ENVIRONMENT.
---
 ChangeLog       | 6 ++++++
 doc/Makefile.am | 6 +++---
 2 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index be92388f14..2edbb693db 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2023-08-14  Gavin Smith <gavinsmith0123@gmail.com>
+
+       * doc/Makefile.am (MAKEINFO_ENVIRONMENT): Do not use shell
+       export statements as this may lead to the same problem experienced
+       with TEXI2DVI_ENVIRONMENT.
+
 2023-08-14  Gavin Smith <gavinsmith0123@gmail.com>
 
        Do not rely on texi2dvi internal directory layout
diff --git a/doc/Makefile.am b/doc/Makefile.am
index e71451eb84..2fe7892e36 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -21,9 +21,9 @@ DISTCLEANFILES = texinfo.info* info-stnd.info* 
texi2any_api.info*
 
 TEXINFO_TEX = texinfo.tex
 
-MAKEINFO_ENVIRONMENT = TEXINFO_DEV_SOURCE=1 ; export TEXINFO_DEV_SOURCE ; \
-                       top_srcdir="$(top_srcdir)" ; export top_srcdir ; \
-                       top_builddir="$(top_builddir)" ; export top_builddir ;
+MAKEINFO_ENVIRONMENT = TEXINFO_DEV_SOURCE=1 \
+                       top_srcdir="$(top_srcdir)" \
+                       top_builddir="$(top_builddir)"
 MAKEINFO = $(MAKEINFO_ENVIRONMENT) $(PERL) $(top_builddir)/tp/texi2any
 
 TEXI2DVI_ENVIRONMENT = TEXINDEX=${abs_top_builddir}/texindex/texindex \



reply via email to

[Prev in Thread] Current Thread [Next in Thread]