mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00
tiny-init: Stop using S == WORKDIR
(From meta-yocto rev: 48fbd32e201667de886b9d5c14807d3958152482) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
2f3dafe8aa
commit
62c5172036
|
@ -11,7 +11,8 @@ SRC_URI = "file://init \
|
|||
file://rc.local.sample \
|
||||
"
|
||||
|
||||
S = "${WORKDIR}"
|
||||
S = "${WORKDIR}/sources"
|
||||
UNPACKDIR = "${S}"
|
||||
|
||||
do_configure() {
|
||||
:
|
||||
|
@ -23,8 +24,8 @@ do_compile() {
|
|||
|
||||
do_install() {
|
||||
install -d ${D}${sysconfdir}
|
||||
install -m 0755 ${WORKDIR}/init ${D}
|
||||
install -m 0755 ${WORKDIR}/rc.local.sample ${D}${sysconfdir}
|
||||
install -m 0755 ${S}/init ${D}
|
||||
install -m 0755 ${S}/rc.local.sample ${D}${sysconfdir}
|
||||
}
|
||||
|
||||
FILES:${PN} = "/init ${sysconfdir}/rc.local.sample"
|
||||
|
|
Loading…
Reference in New Issue
Block a user