xref: /OK3568_Linux_fs/buildroot/package/libgtk3/0001-no-gtk-doc.patch (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1Same patch as for systemd in commit
2http://git.buildroot.net/buildroot/commit/?id=7144f2f04b70553
3
4Fix deactivation of gtk-doc
5
6The tarball contains the Makefile for building documentation with gtk-doc,
7Unfortunately the AM_CONDITIONAL variable is not the correct one, which
8results in an error when running autoreconf.
9
10This patch fixes this issue.
11
12Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
13Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
14
15--- a/gtk-doc.make
16+++ b/gtk-doc.make
17@@ -300,7 +300,7 @@
18 #
19 # Require gtk-doc when making dist
20 #
21-if HAVE_GTK_DOC
22+if ENABLE_GTK_DOC
23 dist-check-gtkdoc: docs
24 else
25 dist-check-gtkdoc:
26