Skip to content

Commit

Permalink
Fix ordering of file installation upstream then local overrides
Browse files Browse the repository at this point in the history
Signed-off-by: Alex J Lennon <ajlennon@dynamicdevices.co.uk>
  • Loading branch information
ajlennon committed Nov 8, 2024
1 parent d35dc9a commit 25edd37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes-devtools/python/python3-improv_git.bb
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ do_compile() {

do_install() {
install -d ${D}/${datadir}/improv
install -D -m 0755 ${WORKDIR}/*.py ${D}${datadir}/improv
install -D -m 0755 ${S}/*.py ${D}${datadir}/improv
install -D -m 0755 ${WORKDIR}/*.py ${D}${datadir}/improv
chmod a+x ${D}${datadir}/improv
install -d ${D}/${systemd_unitdir}/system
install -m 0644 ${WORKDIR}/improv.service ${D}/${systemd_unitdir}/system
Expand Down

0 comments on commit 25edd37

Please sign in to comment.