mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-11-15 13:49:26 +00:00
* Rebase patches to Buildroot 2021.02-rc3 * Update Buildroot to 2021.02-rc3 * Declare Kernel headers to be Linux version 5.10 (since they are, and new Buildroot knows about 5.10)
26 lines
663 B
Diff
26 lines
663 B
Diff
Same patch as for systemd in commit
|
|
http://git.buildroot.net/buildroot/commit/?id=7144f2f04b70553
|
|
|
|
Fix deactivation of gtk-doc
|
|
|
|
The tarball contains the Makefile for building documentation with gtk-doc,
|
|
Unfortunately the AM_CONDITIONAL variable is not the correct one, which
|
|
results in an error when running autoreconf.
|
|
|
|
This patch fixes this issue.
|
|
|
|
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
|
|
Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
|
|
|
|
--- a/gtk-doc.make
|
|
+++ b/gtk-doc.make
|
|
@@ -299,7 +299,7 @@
|
|
#
|
|
# Require gtk-doc when making dist
|
|
#
|
|
-if HAVE_GTK_DOC
|
|
+if ENABLE_GTK_DOC
|
|
dist-check-gtkdoc: docs
|
|
else
|
|
dist-check-gtkdoc:
|