diff options
| author | Khem Raj <raj.khem@gmail.com> | 2020-06-09 18:25:08 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2020-06-10 20:55:07 -0700 |
| commit | 63ef209402dfbdd0bcd1e461d893767a2ac37b1b (patch) | |
| tree | 6cc65b253c7952589ffed2777273f35e54834ef8 | |
| parent | 33c8a0235b40ea89cab0be04b6fb6b81ea1012b6 (diff) | |
| download | meta-openembedded-63ef209402dfbdd0bcd1e461d893767a2ac37b1b.tar.gz | |
toybox-inittab: Get rid of bashism
Be explicit about copying the files, makes it simpler for dash to handle
it
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Martin Jansa <Martin.Jansa@gmail.com>
Cc: Adam Miartus <adam.miartus@softhows.eu>
| -rw-r--r-- | meta-oe/recipes-core/toybox/toybox-inittab_0.8.2.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-core/toybox/toybox-inittab_0.8.2.bb b/meta-oe/recipes-core/toybox/toybox-inittab_0.8.2.bb index 8d7ff61e86..9af1e3f149 100644 --- a/meta-oe/recipes-core/toybox/toybox-inittab_0.8.2.bb +++ b/meta-oe/recipes-core/toybox/toybox-inittab_0.8.2.bb | |||
| @@ -26,8 +26,8 @@ do_patch[noexec] = "1" | |||
| 26 | 26 | ||
| 27 | do_configure() { | 27 | do_configure() { |
| 28 | # copy over files now to have a fresh start on each config | 28 | # copy over files now to have a fresh start on each config |
| 29 | for file in ${SRC_URI}; do | 29 | for f in inittab rcK rcS; do |
| 30 | cp ${WORKDIR}/${file/file:\/\//} ${S} | 30 | cp ${WORKDIR}/$f ${S} |
| 31 | done | 31 | done |
| 32 | 32 | ||
| 33 | for config in ${PACKAGECONFIG_CONFARGS}; do | 33 | for config in ${PACKAGECONFIG_CONFARGS}; do |
