From: Paul Barker Date: Tue, 12 Nov 2019 22:10:03 +0000 (+0000) Subject: scripts/native-intercept: Add chgrp intercept X-Git-Tag: uninative-2.8~1088 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=dfb3b566412fb704c5ce67c2dec74c5b1a20921f;p=openembedded-core.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 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"