summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2013-09-02 16:20:37 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-02 18:02:59 +0100
commit212f512e4689bf59d07e3e5394f3fccb39033a5a (patch)
tree90c23a0fa1099ac5fe9d10101d49f197af980bd6 /scripts
parent1b814498b60d5f354d8cc5bdf568b91baf0745dc (diff)
downloadpoky-212f512e4689bf59d07e3e5394f3fccb39033a5a.tar.gz
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>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/wipe-sysroot8
1 files changed, 4 insertions, 4 deletions
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
34fi 34fi
35 35
36# The sysroots themselves 36# The sysroots themselves
37rm -rf "$STAGING_DIR" 37rm -rf $STAGING_DIR
38 38
39# The stamps that said the sysroot was populated 39# The stamps that said the sysroot was populated
40rm -rf "$STAMPS_DIR/*/*/*.do_populate_sysroot.*" 40rm -rf $STAMPS_DIR/*/*/*.do_populate_sysroot.*
41rm -rf "$STAMPS_DIR/*/*/*.do_populate_sysroot_setscene.*" 41rm -rf $STAMPS_DIR/*/*/*.do_populate_sysroot_setscene.*
42 42
43# The sstate manifests 43# The sstate manifests
44rm -rf "$SSTATE_MANIFESTS/manifest-*.populate-sysroot" 44rm -rf $SSTATE_MANIFESTS/manifest-*.populate-sysroot