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 <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ross Burton 2013-09-02 16:20:37 +01:00 committed by Richard Purdie
parent 1b814498b6
commit 212f512e46
1 changed files with 4 additions and 4 deletions

View File

@ -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