summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2016-01-25 15:04:39 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-26 22:31:58 +0000
commit2495dfafaded6d60bc7032a15aa7beb90c62597d (patch)
treeb0e46bc77eaafef0fbe7e1cdecd5add35d249bf6 /scripts
parentbb971577ab308caf7177d4bda290d1fe5ab842db (diff)
downloadpoky-2495dfafaded6d60bc7032a15aa7beb90c62597d.tar.gz
scripts/wipe-sysroot: also delete uninative sysroot
The uninative sysroot is in ${STAGING_DIR}-uninative so delete that alongwith $STAGING_DIR. (From OE-Core rev: 258668c3cb8f5c00e084e821dae05ba750768bfb) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/wipe-sysroot2
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
42echo "Deleting the sysroots in $STAGING_DIR, and selected stamps in $SSTATE_MANIFESTS and $STAMPS_DIR." 42echo "Deleting the sysroots in $STAGING_DIR, and selected stamps in $SSTATE_MANIFESTS and $STAMPS_DIR."
43 43
44# The sysroots themselves 44# The sysroots themselves
45rm -rf $STAGING_DIR 45rm -rf $STAGING_DIR ${STAGING_DIR}-uninative
46 46
47# The stamps that said the sysroot was populated 47# The stamps that said the sysroot was populated
48rm -rf $STAMPS_DIR/*/*/*.do_populate_sysroot.* 48rm -rf $STAMPS_DIR/*/*/*.do_populate_sysroot.*