diff options
author | Ross Burton <ross.burton@intel.com> | 2013-09-02 16:20:37 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-02 18:02:59 +0100 |
commit | 212f512e4689bf59d07e3e5394f3fccb39033a5a (patch) | |
tree | 90c23a0fa1099ac5fe9d10101d49f197af980bd6 /scripts/wipe-sysroot | |
parent | 1b814498b60d5f354d8cc5bdf568b91baf0745dc (diff) | |
download | poky-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/wipe-sysroot')
-rwxr-xr-x | scripts/wipe-sysroot | 8 |
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 | |||
34 | fi | 34 | fi |
35 | 35 | ||
36 | # The sysroots themselves | 36 | # The sysroots themselves |
37 | rm -rf "$STAGING_DIR" | 37 | rm -rf $STAGING_DIR |
38 | 38 | ||
39 | # The stamps that said the sysroot was populated | 39 | # The stamps that said the sysroot was populated |
40 | rm -rf "$STAMPS_DIR/*/*/*.do_populate_sysroot.*" | 40 | rm -rf $STAMPS_DIR/*/*/*.do_populate_sysroot.* |
41 | rm -rf "$STAMPS_DIR/*/*/*.do_populate_sysroot_setscene.*" | 41 | rm -rf $STAMPS_DIR/*/*/*.do_populate_sysroot_setscene.* |
42 | 42 | ||
43 | # The sstate manifests | 43 | # The sstate manifests |
44 | rm -rf "$SSTATE_MANIFESTS/manifest-*.populate-sysroot" | 44 | rm -rf $SSTATE_MANIFESTS/manifest-*.populate-sysroot |