From 258668c3cb8f5c00e084e821dae05ba750768bfb Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 25 Jan 2016 15:04:39 +0000 Subject: 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 --- scripts/wipe-sysroot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/wipe-sysroot') 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.* -- cgit 1.2.3-korg