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:58 +0000 |
commit | 2495dfafaded6d60bc7032a15aa7beb90c62597d (patch) | |
tree | b0e46bc77eaafef0fbe7e1cdecd5add35d249bf6 /scripts | |
parent | bb971577ab308caf7177d4bda290d1fe5ab842db (diff) | |
download | poky-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-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 | |||
42 | echo "Deleting the sysroots in $STAGING_DIR, and selected stamps in $SSTATE_MANIFESTS and $STAMPS_DIR." | 42 | echo "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 |
45 | rm -rf $STAGING_DIR | 45 | rm -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 |
48 | rm -rf $STAMPS_DIR/*/*/*.do_populate_sysroot.* | 48 | rm -rf $STAMPS_DIR/*/*/*.do_populate_sysroot.* |