commit | 91a1cec28e08f949b120fe8885e87ef256ca4d93 | [log] [tgz] |
---|---|---|
author | Andrew Geissler <geissonator@yahoo.com> | Wed Jun 26 11:06:48 2024 -0400 |
committer | Andrew Geissler <geissonator@yahoo.com> | Thu Dec 05 21:54:29 2024 +0000 |
tree | f77f27af5a79e19def6b6a54c589e728196cd153 | |
parent | 27495f54539c20135e6c23357da2be53635c8ac5 [diff] [blame] |
styhead: update WORKDIR usage The latest yocto release(styhead,5.1) has made a significant change[1] to the use of the WORKDIR parameter. This is not the complete change required but gets us going in the right direction. [1]: https://docs.yoctoproject.org/next/migration-guides/migration-5.1.html#workdir-changes Signed-off-by: Andrew Geissler <geissonator@yahoo.com> Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I4f184b361be69e7704a0657a4a00cdad981aff8a
diff --git a/meta-google/recipes-extended/networking/mstpd_git.bb b/meta-google/recipes-extended/networking/mstpd_git.bb index 923197b..8078081 100644 --- a/meta-google/recipes-extended/networking/mstpd_git.bb +++ b/meta-google/recipes-extended/networking/mstpd_git.bb
@@ -23,8 +23,8 @@ rmdir ${D}${libdir} || true install -d -m 0755 ${D}/${sbindir} - install -m 0755 ${WORKDIR}/bridge-stp ${D}/${sbindir} + install -m 0755 ${UNPACKDIR}/bridge-stp ${D}/${sbindir} install -d -m 0755 ${D}${systemd_system_unitdir} - install -m 0644 ${WORKDIR}/mstpd.service ${D}${systemd_system_unitdir}/ + install -m 0644 ${UNPACKDIR}/mstpd.service ${D}${systemd_system_unitdir}/ }