0001-bc-use-MAKEINFO-variable-for-docs.patch 1.0 KB

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