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 (txirefcard.pdf, txiref


From: Patrice Dumas
Subject: branch master updated: * doc/refcard/Makefile.am (txirefcard.pdf, txirefcard-a4.pdf): use $(srcdir) to find input tex file for out of source build.
Date: Fri, 20 Oct 2023 05:20:57 -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 bbd2ba50bb * doc/refcard/Makefile.am (txirefcard.pdf, 
txirefcard-a4.pdf): use $(srcdir) to find input tex file for out of source 
build.
bbd2ba50bb is described below

commit bbd2ba50bbe76e03eccc063b4bf8aa2fd2b17c62
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Fri Oct 20 11:20:56 2023 +0200

    * doc/refcard/Makefile.am (txirefcard.pdf, txirefcard-a4.pdf):
    use $(srcdir) to find input tex file for out of source build.
---
 ChangeLog               | 5 +++++
 doc/refcard/Makefile.am | 8 ++++----
 2 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index a17e964819..b5bd6aa607 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2023-10-20  Patrice Dumas <pertusus@free.fr>
+
+       * doc/refcard/Makefile.am (txirefcard.pdf, txirefcard-a4.pdf):
+       use $(srcdir) to find input tex file for out of source build.
+
 2023-10-19  Gavin Smith <gavinsmith0123@gmail.com>
 
        * doc/Makefile.am (pod2texi.texi): Remove several -I arguments
diff --git a/doc/refcard/Makefile.am b/doc/refcard/Makefile.am
index 4dc8e27bde..75cbb38399 100644
--- a/doc/refcard/Makefile.am
+++ b/doc/refcard/Makefile.am
@@ -20,13 +20,13 @@ doc = txirefcard
 all: $(doc).pdf $(doc)-a4.pdf
 
 # trying to get it work with pdftex isn't worth the trouble.
-$(doc).pdf: $(doc).tex
-       tex '\nonstopmode \input $(doc)'
+$(doc).pdf: $(srcdir)/$(doc).tex
+       tex '\nonstopmode \input $(srcdir)/$(doc)'
        dvips -t landscape -t letter $(doc) -o
        ps2pdf $(doc).ps
 
-$(doc)-a4.pdf: $(doc).tex
-       tex '\nonstopmode \let\afour=1 \input $(doc)'
+$(doc)-a4.pdf: $(srcdir)/$(doc).tex
+       tex '\nonstopmode \let\afour=1 \input $(srcdir)/$(doc)'
        dvips -t landscape -t a4 $(doc) -o
        ps2pdf $(doc).ps $@
 



reply via email to

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