diff options
author | Mikko Rapeli <mikko.rapeli@linaro.org> | 2024-07-25 12:01:21 +0300 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2024-07-29 20:07:01 -0400 |
commit | 58daab21b74e118ed42dd9bc961777e64bd466b3 (patch) | |
tree | b1a4f4bb7c6c34eaced474cf7a08bd6e1ea05920 | |
parent | 24da91625470a566a19095577704cf6432f2747a (diff) | |
download | meta-security-58daab21b74e118ed42dd9bc961777e64bd466b3.tar.gz |
parsec-service: UNPACKDIR fixes
New poky uses UNPACKDIR instead of WORKDIR
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-parsec/recipes-parsec/parsec-service/parsec-service_1.4.1.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-parsec/recipes-parsec/parsec-service/parsec-service_1.4.1.bb b/meta-parsec/recipes-parsec/parsec-service/parsec-service_1.4.1.bb index 2d55c24..3aa0b0a 100644 --- a/meta-parsec/recipes-parsec/parsec-service/parsec-service_1.4.1.bb +++ b/meta-parsec/recipes-parsec/parsec-service/parsec-service_1.4.1.bb | |||
@@ -61,12 +61,12 @@ do_install () { | |||
61 | install -m 644 ${S}/systemd-daemon/parsec.service ${D}${systemd_unitdir}/system | 61 | install -m 644 ${S}/systemd-daemon/parsec.service ${D}${systemd_unitdir}/system |
62 | 62 | ||
63 | install -d ${D}${libdir}/tmpfiles.d | 63 | install -d ${D}${libdir}/tmpfiles.d |
64 | install -m 644 ${WORKDIR}/parsec-tmpfiles.conf ${D}${libdir}/tmpfiles.d | 64 | install -m 644 ${UNPACKDIR}/parsec-tmpfiles.conf ${D}${libdir}/tmpfiles.d |
65 | fi | 65 | fi |
66 | 66 | ||
67 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 67 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
68 | install -d ${D}${sysconfdir}/init.d | 68 | install -d ${D}${sysconfdir}/init.d |
69 | install -m 755 ${WORKDIR}/parsec_init ${D}${sysconfdir}/init.d/parsec | 69 | install -m 755 ${UNPACKDIR}/parsec_init ${D}${sysconfdir}/init.d/parsec |
70 | # Data dir | 70 | # Data dir |
71 | install -d -m 700 -o parsec -g parsec "${D}${localstatedir}/lib/parsec" | 71 | install -d -m 700 -o parsec -g parsec "${D}${localstatedir}/lib/parsec" |
72 | fi | 72 | fi |