summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/texinfo/texinfo/0002-dont-depend-on-help2man.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/texinfo/texinfo/0002-dont-depend-on-help2man.patch')
-rw-r--r--meta/recipes-extended/texinfo/texinfo/0002-dont-depend-on-help2man.patch68
1 files changed, 68 insertions, 0 deletions
diff --git a/meta/recipes-extended/texinfo/texinfo/0002-dont-depend-on-help2man.patch b/meta/recipes-extended/texinfo/texinfo/0002-dont-depend-on-help2man.patch
new file mode 100644
index 0000000000..f3b6827d58
--- /dev/null
+++ b/meta/recipes-extended/texinfo/texinfo/0002-dont-depend-on-help2man.patch
@@ -0,0 +1,68 @@
1From e02be81fa68ddc7f939abd99de4e42759a0d5d8c Mon Sep 17 00:00:00 2001
2From: Edwin Plauchu <edwin.plauchu.camacho@intel.com>
3Date: Tue, 29 Nov 2016 13:43:24 -0600
4Subject: [PATCH 2/3] dont-depend-on-help2man
5
6Upstream-Status: Inappropriate
7
8Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
9Signed-off-by: Edwin Plauchu <edwin.plauchu.camacho@intel.com>
10---
11 doc/Makefile.am | 2 +-
12 man/Makefile.am | 12 ++++++------
13 2 files changed, 7 insertions(+), 7 deletions(-)
14
15diff --git a/doc/Makefile.am b/doc/Makefile.am
16index e9e6298..f1b9895 100644
17--- a/doc/Makefile.am
18+++ b/doc/Makefile.am
19@@ -63,7 +63,7 @@ refcard/txirefcard.pdf refcard/txirefcard-a4.pdf: refcard/txirefcard.tex
20 # Include our texinfo.tex, not Automake's.
21 EXTRA_DIST = epsf.tex texinfo.tex \
22 fdl.texi \
23- $(man_MANS) $(TXI_XLATE) \
24+ $(TXI_XLATE) \
25 $(refcard_files) \
26 texinfo-tex-test.texi texinfo-tex-test.WIDOWs \
27 texinfo-ja.tex short-sample-ja.texi \
28diff --git a/man/Makefile.am b/man/Makefile.am
29index f2c703f..61caeeb 100644
30--- a/man/Makefile.am
31+++ b/man/Makefile.am
32@@ -11,27 +11,27 @@
33 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
34
35 # These are generated using help2man.
36-man_MANS = install-info.1 makeinfo.1 texindex.1 texi2dvi.1
37+#man_MANS = install-info.1 makeinfo.1 texindex.1 texi2dvi.1
38
39 # These require the build in info/, thus can't do if we failed to find a
40 # terminal library.
41 if HAVE_TERMLIBS
42-man_MANS += info.1
43+#man_MANS += info.1
44 endif
45
46 # These are hand-written.
47-man_MANS += info.5 texinfo.5
48+#man_MANS += info.5 texinfo.5
49
50-man_MANS += pod2texi.1
51+#man_MANS += pod2texi.1
52
53 pod2texi.1: $(top_srcdir)/Pod-Simple-Texinfo/pod2texi.pl
54 $(POD2MAN) $(top_srcdir)/Pod-Simple-Texinfo/pod2texi.pl >"$@"
55
56
57 # These are just .so's to the common program.
58-man_MANS += texi2any.1 texi2pdf.1 pdftexi2dvi.1
59+#man_MANS += texi2any.1 texi2pdf.1 pdftexi2dvi.1
60
61-EXTRA_DIST = $(man_MANS) ginfo.h2m
62+EXTRA_DIST = ginfo.h2m
63
64 # Maintainers should be able to regenerate.
65 MAINTAINERCLEANFILES = $(man_MANS)
66--
672.39.2
68