summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorPaul Barker <paul@betafive.co.uk>2019-11-12 22:10:03 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-11-14 13:21:00 +0000
commita60b54046f079ae0f22e5bf6ae4f4083155ef818 (patch)
tree8300adf60b4c6cddc313b612e09d6c07c787c321 /scripts
parentc4faf7364c1d5c2c23a123ace103f4f85b8fa677 (diff)
downloadpoky-a60b54046f079ae0f22e5bf6ae4f4083155ef818.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. (From OE-Core rev: dfb3b566412fb704c5ce67c2dec74c5b1a20921f) Signed-off-by: Paul Barker <paul@betafive.co.uk> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/native-intercept/chgrp5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/native-intercept/chgrp b/scripts/native-intercept/chgrp
new file mode 100755
index 0000000000..399c979f9a
--- /dev/null
+++ b/scripts/native-intercept/chgrp
@@ -0,0 +1,5 @@
1#! /bin/sh
2#
3# SPDX-License-Identifier: GPL-2.0-only
4#
5echo "Intercept $0: $@ -- do nothing"