From: Paul Barker Date: Tue, 12 Nov 2019 22:10:03 +0000 (+0000) Subject: scripts/native-intercept: Add chgrp intercept X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~12758 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dfb3b566412fb704c5ce67c2dec74c5b1a20921f;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Richard Purdie --- 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"