From 212f512e4689bf59d07e3e5394f3fccb39033a5a Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 2 Sep 2013 16:20:37 +0100 Subject: wipe-sysroot: fix removals The previous changes were totally broken as quoting globs doesn't work. Remove the quotes so the rm commands actually delete the stamps. (From OE-Core rev: 5eca43debd7fbc861d41f4e260b37282915bd053) Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- scripts/wipe-sysroot | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/wipe-sysroot b/scripts/wipe-sysroot index 2d2cbeac8c..1c01166cb9 100755 --- a/scripts/wipe-sysroot +++ b/scripts/wipe-sysroot @@ -34,11 +34,11 @@ if [ -z "$SSTATE_MANIFESTS" -o -z "$STAGING_DIR" -o -z "$STAMPS_DIR" ]; then fi # The sysroots themselves -rm -rf "$STAGING_DIR" +rm -rf $STAGING_DIR # The stamps that said the sysroot was populated -rm -rf "$STAMPS_DIR/*/*/*.do_populate_sysroot.*" -rm -rf "$STAMPS_DIR/*/*/*.do_populate_sysroot_setscene.*" +rm -rf $STAMPS_DIR/*/*/*.do_populate_sysroot.* +rm -rf $STAMPS_DIR/*/*/*.do_populate_sysroot_setscene.* # The sstate manifests -rm -rf "$SSTATE_MANIFESTS/manifest-*.populate-sysroot" +rm -rf $SSTATE_MANIFESTS/manifest-*.populate-sysroot -- cgit v1.2.3-54-g00ecf