7144f2f04b
This patch bumps systemd to v213. This new version introduces systemd-timesyncd, a SNTP daemon. This feature can be enabled if systemd-networkd is selected via the configuration menu. It is a simple alternative to ntpd, useful for machines without a RTC. The patch for reverting the use of --relative option when calling `ln` has been refreshed, as the configure script now checks if `ln` supports the --relative option and fails if it does not. Another patch for the proper deactivation of gtk-doc has been added. All these steps now require an autoreconf. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
712 B
Diff
24 lines
712 B
Diff
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>
|
|
---
|
|
Index: systemd-213/docs/gtk-doc.make
|
|
===================================================================
|
|
--- systemd-213.orig/docs/gtk-doc.make 2014-02-14 09:27:47.000000000 +0100
|
|
+++ systemd-213/docs/gtk-doc.make 2014-06-04 15:20:11.976845074 +0200
|
|
@@ -267,7 +267,7 @@
|
|
#
|
|
# Require gtk-doc when making dist
|
|
#
|
|
-if HAVE_GTK_DOC
|
|
+if ENABLE_GTK_DOC
|
|
dist-check-gtkdoc: docs
|
|
else
|
|
dist-check-gtkdoc:
|