summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-core
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2012-04-13 17:20:48 +0200
committerKoen Kooi <koen@dominion.thruhere.net>2012-04-13 17:20:48 +0200
commit204f537a181e3532ef8ba9ddadb7baf49a3b2be5 (patch)
treec6f700306ab5080ee65653900daf90bf849c5b5c /meta-oe/recipes-core
parentaa62eed2e5339b6e244e05d7c8a5bcdc85c643ea (diff)
downloadmeta-openembedded-204f537a181e3532ef8ba9ddadb7baf49a3b2be5.tar.gz
systemd: fix emergency and rescue services
In OE we use /home/root, not /root. Bug-reported-by: Graham Murphy <Graham.Murphy@jhuapl.edu> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-core')
-rw-r--r--meta-oe/recipes-core/systemd/systemd_git.bb5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb b/meta-oe/recipes-core/systemd/systemd_git.bb
index becbc9005..b23e5f510 100644
--- a/meta-oe/recipes-core/systemd/systemd_git.bb
+++ b/meta-oe/recipes-core/systemd/systemd_git.bb
@@ -14,7 +14,7 @@ inherit gitpkgv
14PKGV = "v${GITPKGVTAG}" 14PKGV = "v${GITPKGVTAG}"
15 15
16PV = "git" 16PV = "git"
17PR = "r25" 17PR = "r26"
18 18
19inherit useradd pkgconfig autotools vala perlnative 19inherit useradd pkgconfig autotools vala perlnative
20 20
@@ -49,6 +49,9 @@ EXTRA_OECONF = " --with-distro=${SYSTEMDDISTRO} \
49# There's no docbook-xsl-native, so for the xsltproc check to false 49# There's no docbook-xsl-native, so for the xsltproc check to false
50do_configure_prepend() { 50do_configure_prepend() {
51 sed -i /xsltproc/d configure.ac 51 sed -i /xsltproc/d configure.ac
52
53 # we only have /home/root, not /root
54 sed -i -e 's:=/root:=/home/root:g' units/*.service*
52} 55}
53 56
54do_install() { 57do_install() {