texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: * man/Makefile.am: In the rules that use HELP2MAN


From: Gavin D. Smith
Subject: branch master updated: * man/Makefile.am: In the rules that use HELP2MAN, prefix the target file names with '$(srcdir)/'.
Date: Mon, 10 Jun 2024 14:58:13 -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 86ee868e0d * man/Makefile.am: In the rules that use HELP2MAN, prefix 
the target file names with '$(srcdir)/'.
86ee868e0d is described below

commit 86ee868e0ddd4510ae4d23e6a464d30dfa24e065
Author: Bruno Haible <bruno@clisp.org>
AuthorDate: Mon Jun 10 19:55:31 2024 +0100

    * man/Makefile.am: In the rules that use HELP2MAN, prefix the
    target file names with '$(srcdir)/'.
---
 ChangeLog       |  5 +++++
 man/Makefile.am | 12 ++++++------
 2 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index ab389743ff..ac8ca9f450 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-06-10  Bruno Haible  <bruno@clisp.org>
+
+       * man/Makefile.am: In the rules that use HELP2MAN, prefix the
+       target file names with '$(srcdir)/'.
+
 2024-06-10  Patrice Dumas  <pertusus@free.fr>
 
        Include xlocale.h for newlocale and other symbols if found
diff --git a/man/Makefile.am b/man/Makefile.am
index cd13ca3f47..6ff35bf204 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -27,7 +27,7 @@ endif
 
 generated_mans += pod2texi.1
 
-pod2texi.1: $(top_srcdir)/Pod-Simple-Texinfo/pod2texi.pl
+$(srcdir)/pod2texi.1: $(top_srcdir)/Pod-Simple-Texinfo/pod2texi.pl
        $(POD2MAN) -r perl $(top_srcdir)/Pod-Simple-Texinfo/pod2texi.pl \
   | sed 's/\(Automatically generated by Pod::Man \).* \((Pod::Simple\) 
.*)/\1\2)/' >"$@"
 
@@ -80,29 +80,29 @@ common_mandeps = $(top_srcdir)/configure.ac
 
 # for Info, we have an additional help2man file since the standard
 # SEE ALSO text from help2man does not fit.
-info.1: $(top_srcdir)/info/info.c $(srcdir)/ginfo.h2m \
+$(srcdir)/info.1: $(top_srcdir)/info/info.c $(srcdir)/ginfo.h2m \
                   $(common_mandeps)
        @name="read Info documents" && $(man_rule_bin)
 
-install-info.1: $(top_srcdir)/install-info/install-info.c \
+$(srcdir)/install-info.1: $(top_srcdir)/install-info/install-info.c \
                           $(common_mandeps)
        @name="update info/dir entries" && $(man_rule_bin)
 
 # Here we need some postprocessing to avoid man misformatting.
-makeinfo.1: $(tpdir)/texi2any.pl $(common_mandeps)
+$(srcdir)/makeinfo.1: $(tpdir)/texi2any.pl $(common_mandeps)
        @name="translate Texinfo documents" && $(man_rule_bin)
        mv $@ $@.tmp
        sed '/^\.IP$$/N;/\nAlso/s/I//;/\nThe/s/I//' $@.tmp >$@
        rm $@.tmp
 
-texindex.1: $(top_srcdir)/texindex/ti.twjr $(common_mandeps)
+$(srcdir)/texindex.1: $(top_srcdir)/texindex/ti.twjr $(common_mandeps)
        @name="sort Texinfo index files" && $(man_rule_bin)
 
 # 
 # For texi2dvi, do not depend on the current user's settings.
 texi2dvi_envvars = unset TEXI2DVI_BUILD_MODE; unset TEXI2DVI_BUILD_DIRECTORY
 
-texi2dvi.1: $(top_srcdir)/util/texi2dvi $(common_mandeps)
+$(srcdir)/texi2dvi.1: $(top_srcdir)/util/texi2dvi $(common_mandeps)
        $(texi2dvi_envvars); $(HELP2MAN) \
          --name="convert Texinfo documents to DVI or PDF" \
          $(top_srcdir)/util/texi2dvi >$@



reply via email to

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