diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2014-07-30 10:02:30 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-08-01 14:23:46 +0200 |
commit | 583d9dc3381176c3ef30667838ccf43475edb5b9 (patch) | |
tree | c077f49d9bf5cbf3d6570e53d53d79630e0c496a /meta-systemd | |
parent | 0e17f09a833d1c3a11f42af219ff4d4ae47d12f1 (diff) | |
download | meta-openembedded-583d9dc3381176c3ef30667838ccf43475edb5b9.tar.gz |
portmap: fix FILESEXTRAPATHS
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-systemd')
-rw-r--r-- | meta-systemd/oe-core/recipes-connectivity/portmap/portmap_6.0.bbappend | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-systemd/oe-core/recipes-connectivity/portmap/portmap_6.0.bbappend b/meta-systemd/oe-core/recipes-connectivity/portmap/portmap_6.0.bbappend index 765f4b328..f13b51187 100644 --- a/meta-systemd/oe-core/recipes-connectivity/portmap/portmap_6.0.bbappend +++ b/meta-systemd/oe-core/recipes-connectivity/portmap/portmap_6.0.bbappend | |||
@@ -1,4 +1,4 @@ | |||
1 | FILESEXTRAPATHS := "${THISDIR}/${PN}" | 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:" |
2 | 2 | ||
3 | inherit systemd | 3 | inherit systemd |
4 | 4 | ||
@@ -9,8 +9,8 @@ SYSTEMD_SERVICE_${PN} = "portmap.service" | |||
9 | SYSTEMD_AUTO_ENABLE = "disable" | 9 | SYSTEMD_AUTO_ENABLE = "disable" |
10 | 10 | ||
11 | SRC_URI_append = " file://portmap.service" | 11 | SRC_URI_append = " file://portmap.service" |
12 | |||
12 | do_install_append() { | 13 | do_install_append() { |
13 | install -d ${D}${systemd_unitdir}/system | 14 | install -d ${D}${systemd_unitdir}/system |
14 | install -m 0644 ${WORKDIR}/portmap.service ${D}${systemd_unitdir}/system | 15 | install -m 0644 ${WORKDIR}/portmap.service ${D}${systemd_unitdir}/system |
15 | } | 16 | } |
16 | |||