2
1

0001-fix-no-gtk-doc.patch 1015 B

1234567891011121314151617181920212223242526272829303132333435
  1. From a3d47be3b6bed845af5e1aa87ca2da2b1e840cbb Mon Sep 17 00:00:00 2001
  2. From: Pieter De Gendt <pieter.degendt@basalte.be>
  3. Date: Thu, 29 Jan 2015 12:25:35 +0100
  4. Subject: [PATCH] Same patch as for systemd in commit
  5. http://git.buildroot.net/buildroot/commit/?id=7144f2f04b70553
  6. Fix deactivation of gtk-doc
  7. The tarball contains the Makefile for building documentation with gtk-doc,
  8. Unfortunately the AM_CONDITIONAL variable is not the correct one, which
  9. results in an error when running autoreconf.
  10. This patch fixes this issue.
  11. Signed-off-by: Pieter De Gendt <pieter.degendt@gmail.com>
  12. ---
  13. doc/reference/gtk-doc.make | 2 +-
  14. 1 file changed, 1 insertion(+), 1 deletion(-)
  15. diff --git a/doc/reference/gtk-doc.make b/doc/reference/gtk-doc.make
  16. index e791656..786803e 100644
  17. --- a/doc/reference/gtk-doc.make
  18. +++ b/doc/reference/gtk-doc.make
  19. @@ -267,7 +267,7 @@ uninstall-local:
  20. #
  21. # Require gtk-doc when making dist
  22. #
  23. -if HAVE_GTK_DOC
  24. +if ENABLE_GTK_DOC
  25. dist-check-gtkdoc: docs
  26. else
  27. dist-check-gtkdoc:
  28. --
  29. 2.2.2