diff options
-rw-r--r-- | meta-oe/recipes-core/systemd/systemd_git.bb | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb b/meta-oe/recipes-core/systemd/systemd_git.bb index 6c34f7555..9f92f8ace 100644 --- a/meta-oe/recipes-core/systemd/systemd_git.bb +++ b/meta-oe/recipes-core/systemd/systemd_git.bb | |||
@@ -14,15 +14,12 @@ SECTION = "base/shell" | |||
14 | inherit gitpkgv | 14 | inherit gitpkgv |
15 | PKGV = "v${GITPKGVTAG}" | 15 | PKGV = "v${GITPKGVTAG}" |
16 | 16 | ||
17 | # This gets reset to the proper version with PKGV above | 17 | PV = "git" |
18 | # Except that PKGV doesn't work in OE-core :( | ||
19 | # PV = "git" | ||
20 | PV = "v28" | ||
21 | PR = "r1" | 18 | PR = "r1" |
22 | 19 | ||
23 | inherit autotools vala update-alternatives | 20 | inherit autotools vala update-alternatives |
24 | 21 | ||
25 | SRCREV = "0e8eb2d2e2446a3f6ba1eee1940fc96167ae332a" | 22 | SRCREV = "9a66640832d103f906c2ef609a1d19d43fc542f6" |
26 | 23 | ||
27 | SRC_URI = "git://anongit.freedesktop.org/systemd;protocol=git \ | 24 | SRC_URI = "git://anongit.freedesktop.org/systemd;protocol=git \ |
28 | file://execute.patch \ | 25 | file://execute.patch \ |
@@ -93,3 +90,11 @@ RDEPENDS_${PN} += "dbus-systemd udev-systemd" | |||
93 | # kbd -> loadkeys,setfont | 90 | # kbd -> loadkeys,setfont |
94 | RRECOMMENDS_${PN} += "kbd kbd-consolefonts ${PN}-serialgetty" | 91 | RRECOMMENDS_${PN} += "kbd kbd-consolefonts ${PN}-serialgetty" |
95 | 92 | ||
93 | pkg_postinst_${PN} () { | ||
94 | # can't do this offline | ||
95 | if [ "x$D" != "x" ]; then | ||
96 | exit 1 | ||
97 | fi | ||
98 | grep "^lock:" /etc/group > /dev/null || addgroup lock | ||
99 | } | ||
100 | |||