diff options
author | Paul Barker <paul@betafive.co.uk> | 2019-11-12 22:10:03 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-11-14 13:14:25 +0000 |
commit | dfb3b566412fb704c5ce67c2dec74c5b1a20921f (patch) | |
tree | 1c74c4fba6c34137359daf98bd9a97c6f7048c21 /scripts | |
parent | 3f91512ffc8c1c3374b3a67df5f86e884c78d7a1 (diff) | |
download | openembedded-core-contrib-dfb3b566412fb704c5ce67c2dec74c5b1a20921f.tar.gz |
scripts/native-intercept: Add chgrp intercept
Some installation rules have been seen to run chgrp for native recipes
which leads to 'Operation not permitted' errors. To prevent this we
need a chgrp intercept script to go with the existing chown intercept.
Signed-off-by: Paul Barker <paul@betafive.co.uk>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/native-intercept/chgrp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/native-intercept/chgrp b/scripts/native-intercept/chgrp new file mode 100755 index 00000000000..399c979f9ac --- /dev/null +++ b/scripts/native-intercept/chgrp @@ -0,0 +1,5 @@ +#! /bin/sh +# +# SPDX-License-Identifier: GPL-2.0-only +# +echo "Intercept $0: $@ -- do nothing" |