xref: /OK3568_Linux_fs/buildroot/package/bc/0001-bc-use-MAKEINFO-variable-for-docs.patch (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1From 7dc22308b2974fd093b6a564b7b28ddc20ddf4a6 Mon Sep 17 00:00:00 2001
2From: Matt Weber <matthew.weber@rockwellcollins.com>
3Date: Fri, 13 Sep 2019 13:45:02 -0500
4Subject: [PATCH] bc: use MAKEINFO variable for docs
5
6Use the appropiate MAKEINFO variable rather than the hardcoded makeinfo
7command directly, otherwise missing logic never works.
8
9Fixes:
10http://autobuild.buildroot.net/results/b0b/b0b9dced0014a5a8026fa972f95085e8bd16a07b/
11
12[Recreated for 1.0.7.1 by Matt W and applied to Makefile.am instead of
13 Makefile.in]
14Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
15Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
16---
17 doc/Makefile.am | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20diff --git a/doc/Makefile.am b/doc/Makefile.am
21index 1bdc478..f873b6a 100644
22--- a/doc/Makefile.am
23+++ b/doc/Makefile.am
24@@ -1,7 +1,7 @@
25 ## Process this file with automake to produce Makefile.in
26
27 info_TEXINFOS = bc.texi dc.texi
28-MAKEINFO = makeinfo --no-split
29+MAKEINFO = @MAKEINFO@ --no-split
30
31 MAINTAINERCLEANFILES = Makefile.in
32
33--
342.17.1
35
36