mirror of
https://git.yoctoproject.org/poky
synced 2026-09-24 22:36:21 +02:00
recipes: Update S = WORKDIR recipes to use ${S} correctly
Where recipes use S = ${WORKDIR}, ensure they are referencing ${S} correctly
to access files as soon we want to stop doing this in WORKDIR at which point
they would break unless corrected.
(From OE-Core rev: f25dd633fffe6560f191526d1869e657e129bad9)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -17,7 +17,7 @@ do_install () {
|
||||
# Ensure we add a suitable securetty file to the package that has
|
||||
# most common embedded TTYs defined.
|
||||
install -d ${D}${sysconfdir}
|
||||
install -m 0400 ${WORKDIR}/securetty ${D}${sysconfdir}/securetty
|
||||
install -m 0400 ${S}/securetty ${D}${sysconfdir}/securetty
|
||||
if [ ! -z "${SERIAL_CONSOLES}" ]; then
|
||||
# Our SERIAL_CONSOLES contains a baud rate and sometimes extra
|
||||
# options as well. The following pearl :) takes that and converts
|
||||
|
||||
Reference in New Issue
Block a user