]> code.ossystems Code Review - openembedded-core.git/commitdiff
scripts/native-intercept: Add chgrp intercept
authorPaul Barker <paul@betafive.co.uk>
Tue, 12 Nov 2019 22:10:03 +0000 (22:10 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 14 Nov 2019 13:14:25 +0000 (13:14 +0000)
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>
scripts/native-intercept/chgrp [new file with mode: 0755]

diff --git a/scripts/native-intercept/chgrp b/scripts/native-intercept/chgrp
new file mode 100755 (executable)
index 0000000..399c979
--- /dev/null
@@ -0,0 +1,5 @@
+#! /bin/sh
+#
+# SPDX-License-Identifier: GPL-2.0-only
+#
+echo "Intercept $0: $@ -- do nothing"