diff options
| author | Paulo Neves <ptsneves@gmail.com> | 2022-07-03 13:41:14 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-07-04 15:15:14 +0100 |
| commit | f0ee9008597b08704726c5c140836c2497002711 (patch) | |
| tree | 9afaf4ecd1f563f831f15aaced0502f52fd1b001 /meta/classes | |
| parent | 0e84a9d697842fce615f2d6a9fbbae121955051c (diff) | |
| download | poky-f0ee9008597b08704726c5c140836c2497002711.tar.gz | |
utils: create_cmdline_shebang_wrapper preserve permission and ownership
The .real command was not given the same permissions and ownership as
the original pre-wrap file and this is now fixed.
A situation where the original pre-wrap file did not have write
permissions would cause a failure in the wrapping is also fixed.
Test update also included.
(From OE-Core rev: 47973fd4f3fbb0af1a0d1bc2c39f2900a963177d)
Signed-off-by: Paulo Neves <ptsneves@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
| -rw-r--r-- | meta/classes/utils.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass index b58c22771f..e6f7f95d80 100644 --- a/meta/classes/utils.bbclass +++ b/meta/classes/utils.bbclass | |||
| @@ -202,6 +202,9 @@ create_cmdline_shebang_wrapper () { | |||
| 202 | argument="$(sed -ne 's/^#! *//p;q' $cmd)" | 202 | argument="$(sed -ne 's/^#! *//p;q' $cmd)" |
| 203 | # strip the shebang from the real script as we do not want it to be usable anyway | 203 | # strip the shebang from the real script as we do not want it to be usable anyway |
| 204 | tail -n +2 $cmd > $cmd.real | 204 | tail -n +2 $cmd > $cmd.real |
| 205 | chown --reference=$cmd $cmd.real | ||
| 206 | chmod --reference=$cmd $cmd.real | ||
| 207 | rm -f $cmd | ||
| 205 | cmdname=$(basename $cmd) | 208 | cmdname=$(basename $cmd) |
| 206 | dirname=$(dirname $cmd) | 209 | dirname=$(dirname $cmd) |
| 207 | cmdoptions=$@ | 210 | cmdoptions=$@ |
