diff options
author | Ross Burton <ross.burton@intel.com> | 2016-01-25 15:04:39 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-26 22:31:08 +0000 |
commit | 258668c3cb8f5c00e084e821dae05ba750768bfb (patch) | |
tree | 20c071729b1a12d01159e2a835f8b566cf852cf6 /scripts/wipe-sysroot | |
parent | 9b3dc1bd4b8336423a3f8f7db0ab5fa6fa0e7257 (diff) | |
download | openembedded-core-258668c3cb8f5c00e084e821dae05ba750768bfb.tar.gz openembedded-core-258668c3cb8f5c00e084e821dae05ba750768bfb.tar.bz2 openembedded-core-258668c3cb8f5c00e084e821dae05ba750768bfb.zip |
scripts/wipe-sysroot: also delete uninative sysroot
The uninative sysroot is in ${STAGING_DIR}-uninative so delete that alongwith
$STAGING_DIR.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts/wipe-sysroot')
-rwxr-xr-x | scripts/wipe-sysroot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/wipe-sysroot b/scripts/wipe-sysroot index c22d39a405..9e067e8df9 100755 --- a/scripts/wipe-sysroot +++ b/scripts/wipe-sysroot @@ -42,7 +42,7 @@ fi echo "Deleting the sysroots in $STAGING_DIR, and selected stamps in $SSTATE_MANIFESTS and $STAMPS_DIR." # The sysroots themselves -rm -rf $STAGING_DIR +rm -rf $STAGING_DIR ${STAGING_DIR}-uninative # The stamps that said the sysroot was populated rm -rf $STAMPS_DIR/*/*/*.do_populate_sysroot.* |