summaryrefslogtreecommitdiffstats
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:14:25 +0000
commitdfb3b566412fb704c5ce67c2dec74c5b1a20921f (patch)
tree1c74c4fba6c34137359daf98bd9a97c6f7048c21
parent3f91512ffc8c1c3374b3a67df5f86e884c78d7a1 (diff)
downloadopenembedded-core-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>
-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 @@
+#! /bin/sh
+#
+# SPDX-License-Identifier: GPL-2.0-only
+#
+echo "Intercept $0: $@ -- do nothing"