texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: * doc/refcard/Makefile.am (CHECKS_ENV, ccheck, v


From: Patrice Dumas
Subject: branch master updated: * doc/refcard/Makefile.am (CHECKS_ENV, ccheck, vcheck): set srcdir and top_builddir in the checking commands environment for out of source builds.
Date: Thu, 24 Oct 2024 02:53:33 -0400

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

pertusus pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new 8629bd70e9 * doc/refcard/Makefile.am (CHECKS_ENV, ccheck, vcheck): set 
srcdir and top_builddir in the checking commands environment for out of source 
builds.
8629bd70e9 is described below

commit 8629bd70e9235f5bff9050d1d215f72a3b28eb1f
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Thu Oct 24 08:53:23 2024 +0200

    * doc/refcard/Makefile.am (CHECKS_ENV, ccheck, vcheck): set srcdir and
    top_builddir in the checking commands environment for out of source
    builds.
---
 ChangeLog               | 6 ++++++
 doc/refcard/Makefile.am | 7 +++++--
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 50dec09b7a..a76150b5ab 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-10-24  Patrice Dumas  <pertusus@free.fr>
+
+       * doc/refcard/Makefile.am (CHECKS_ENV, ccheck, vcheck): set srcdir and
+       top_builddir in the checking commands environment for out of source
+       builds.
+
 2024-10-23  Patrice Dumas  <pertusus@free.fr>
 
        * README-hacking: update ppport.h call.
diff --git a/doc/refcard/Makefile.am b/doc/refcard/Makefile.am
index 500a5149ae..82ba47466d 100644
--- a/doc/refcard/Makefile.am
+++ b/doc/refcard/Makefile.am
@@ -30,11 +30,14 @@ $(doc)-a4.pdf: $(srcdir)/$(doc).tex
        dvips -t landscape -t a4 $(doc)-a4 -o
        ps2pdf $(doc)-a4.ps $@
 
+CHECKS_ENV = srcdir="$(srcdir)"; export srcdir; \
+             top_builddir="$(top_builddir)"; export top_builddir;
+
 ccheck:
-       $(srcdir)/txicmdcheck $(txi_check_args)
+       $(CHECKS_ENV) $(srcdir)/txicmdcheck $(txi_check_args)
 
 vcheck:
-       $(srcdir)/txivarcheck $(txi_check_args)
+       $(CHECKS_ENV) $(srcdir)/txivarcheck $(txi_check_args)
 
 spell:
        aspell list --mode=tex --add-extra-dicts=`pwd`/refcard.spell \



reply via email to

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