diff options
author | Alex Franco <alejandro.franco@linux.intel.com> | 2015-08-28 17:34:04 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-31 12:24:36 +0100 |
commit | 8236d57439640a185c0226312cd4903a3ce2f53b (patch) | |
tree | 95262229652734742440a29918d775c650d3cd22 /scripts/oe-setup-builddir | |
parent | 0c21e207537deb1c0290be631b4b7d84fba32842 (diff) | |
download | openembedded-core-8236d57439640a185c0226312cd4903a3ce2f53b.tar.gz openembedded-core-8236d57439640a185c0226312cd4903a3ce2f53b.tar.bz2 openembedded-core-8236d57439640a185c0226312cd4903a3ce2f53b.zip |
Fix mode +st on TMPDIR when creating it
A sanity check fails when TMPDIR has setuid, setgid set. It was
proposed to fix this on TMPDIR creation instead of failing with
a sanity test only. This patch handles removal of those special
bits (and additonally, the sticky bit) from BUILDDIR and TMPDIR
when these directories are created.
[YOCTO #7669]
Signed-off-by: Alex Franco <alejandro.franco@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-setup-builddir')
-rwxr-xr-x | scripts/oe-setup-builddir | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/oe-setup-builddir b/scripts/oe-setup-builddir index add0b50e25..f5b7e4e2d0 100755 --- a/scripts/oe-setup-builddir +++ b/scripts/oe-setup-builddir @@ -24,6 +24,7 @@ if [ -z "$BUILDDIR" ]; then fi mkdir -p "$BUILDDIR/conf" +chmod -R -st "$BUILDDIR" if [ ! -d "$BUILDDIR" ]; then echo >&2 "Error: The builddir ($BUILDDIR) does not exist!" |