summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-core/systemd/systemd_git.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-core/systemd/systemd_git.bb')
-rw-r--r--meta-oe/recipes-core/systemd/systemd_git.bb13
1 files changed, 9 insertions, 4 deletions
diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb b/meta-oe/recipes-core/systemd/systemd_git.bb
index bafdf9c27..7f6751c9c 100644
--- a/meta-oe/recipes-core/systemd/systemd_git.bb
+++ b/meta-oe/recipes-core/systemd/systemd_git.bb
@@ -18,11 +18,10 @@ PR = "r0"
18 18
19inherit autotools vala 19inherit autotools vala
20 20
21SRCREV = "501c92c432c7bef452a2714c29519bdd45281a72" 21SRCREV = "85f19d825e7504676f3a80c78c1d9a7ec35a3b3f"
22 22
23SRC_URI = "git://anongit.freedesktop.org/systemd;protocol=git \ 23SRC_URI = "git://anongit.freedesktop.org/systemd;protocol=git \
24 file://0001-systemd-disable-xml-file-stuff-and-introspection.patch \ 24 file://0001-systemd-disable-xml-file-stuff-and-introspection.patch \
25 file://use-nonet-for-docbook.patch \
26 ${UCLIBCPATCHES} \ 25 ${UCLIBCPATCHES} \
27 " 26 "
28UCLIBCPATCHES = "" 27UCLIBCPATCHES = ""
@@ -42,6 +41,11 @@ EXTRA_OECONF = " --with-distro=${SYSTEMDDISTRO} \
42 --disable-gtk \ 41 --disable-gtk \
43 " 42 "
44 43
44do_configure_prepend() {
45 # avoid network access
46 sed -i -e /nonet/d Makefile.am
47}
48
45do_install() { 49do_install() {
46 autotools_do_install 50 autotools_do_install
47 # provided by a seperate recipe 51 # provided by a seperate recipe
@@ -52,7 +56,7 @@ PACKAGES =+ "${PN}-gui"
52 56
53FILES_${PN}-gui = "${bindir}/systemadm" 57FILES_${PN}-gui = "${bindir}/systemadm"
54 58
55FILES_${PN} = " ${base_bindir}/* \ 59FILES_${PN} += " ${base_bindir}/* \
56 ${datadir}/dbus-1/services \ 60 ${datadir}/dbus-1/services \
57 ${datadir}/dbus-1/system-services \ 61 ${datadir}/dbus-1/system-services \
58 ${datadir}/polkit-1 \ 62 ${datadir}/polkit-1 \
@@ -68,7 +72,8 @@ FILES_${PN} = " ${base_bindir}/* \
68 ${libdir}/systemd \ 72 ${libdir}/systemd \
69 " 73 "
70 74
71FILES_${PN}-dbg += "${base_libdir}/systemd/.debug ${base_libdir}/systemd/*/.debug" 75FILES_${PN}-dbg += "${base_libdir}/systemd/.debug ${base_libdir}/systemd/*/.debug ${base_libdir}/security/.debug/"
76FILES_${PN}-dev += "${base_libdir}/security/*.la"
72 77
73RDEPENDS_${PN} += "dbus-systemd udev-systemd" 78RDEPENDS_${PN} += "dbus-systemd udev-systemd"
74 79