mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 12:50:22 +02:00

Now that UNPACKDIR has been introduced to OE-Core, use it in the do_install fuction so that as/when things move around and UNPACKDIR is no longer WORKDIR, it continues to work correctly. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
10 lines
270 B
PHP
10 lines
270 B
PHP
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
|
|
|
|
SRC_URI += "file://getty-wrapper"
|
|
|
|
do_install:append() {
|
|
install -d ${D}${base_sbindir}
|
|
install -m 0755 ${UNPACKDIR}/getty-wrapper ${D}${base_sbindir}/getty-wrapper
|
|
}
|
|
FILES:${PN} += "${base_sbindir}/getty-wrapper"
|