summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2015-06-13 09:44:48 -0300
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-06-13 14:53:01 +0200
commit0db1c13559660fce92759bdb1cd225614ba5d8d1 (patch)
tree2c1784db30aa7e3c924e736150f606fed37f33bd
parent998bc7082ca667b8c62f79f6b3fcae87d2d3fbe8 (diff)
bc: patch makeinfo logic
It uses a hardcoded "makeinfo" command invocation instead of the usual MAKEINFO variable with the missing logic for docs. Fixes: http://autobuild.buildroot.net/results/b0b/b0b9dced0014a5a8026fa972f95085e8bd16a07b/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--package/bc/03_use_appropiate_makeinfo.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/package/bc/03_use_appropiate_makeinfo.patch b/package/bc/03_use_appropiate_makeinfo.patch
new file mode 100644
index 000000000..e6f9262b0
--- /dev/null
+++ b/package/bc/03_use_appropiate_makeinfo.patch
@@ -0,0 +1,17 @@
+Use the appropiate MAKEINFO variable rather than the hardcoded makeinfo
+command directly, otherwise missing logic never works.
+
+Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
+
+diff -Nura bc-1.06.95.orig/doc/Makefile.in bc-1.06.95/doc/Makefile.in
+--- bc-1.06.95.orig/doc/Makefile.in 2015-06-13 09:39:46.946620294 -0300
++++ bc-1.06.95/doc/Makefile.in 2015-06-13 09:40:10.019407630 -0300
+@@ -96,7 +96,7 @@
+ LIBOBJS = @LIBOBJS@
+ LIBS = @LIBS@
+ LTLIBOBJS = @LTLIBOBJS@
+-MAKEINFO = makeinfo --no-split
++MAKEINFO = @MAKEINFO@ --no-split
+ OBJEXT = @OBJEXT@
+ PACKAGE = @PACKAGE@
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@