From: Vicente Olivert Riera Date: Thu, 10 Apr 2014 15:59:26 +0000 (+0100) Subject: liblogging: Depend on systemd X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bdd2075ea3ebbee9794406529563b068137bd517;p=buildroot.git liblogging: Depend on systemd This package depends on systemd because in the configure phase it searches for a file installed by systemd. We add systemd to it's dependencies to ensure that is built before this package. Fixes: http://autobuild.buildroot.net/results/32c/32c636020600aa3f378d326c84fac82eb1fb2871/ Signed-off-by: Vicente Olivert Riera Signed-off-by: Peter Korsgaard --- diff --git a/package/liblogging/liblogging.mk b/package/liblogging/liblogging.mk index fa181fb78b..3608c40008 100644 --- a/package/liblogging/liblogging.mk +++ b/package/liblogging/liblogging.mk @@ -13,6 +13,7 @@ LIBLOGGING_CONF_OPT = --enable-cached-man-pages ifeq ($(BR2_INIT_SYSTEMD),y) LIBLOGGING_CONF_OPT += --enable-journal +LIBLOGGING_DEPENDENCIES += systemd else LIBLOGGING_CONF_OPT += --disable-journal endif