diff options
author | Ross Burton <ross.burton@intel.com> | 2013-09-19 11:08:48 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-20 12:14:31 +0100 |
commit | e6ef8399cd8e97b9cd59855e11f1792445f0e65b (patch) | |
tree | e62bf402d3e9a54a7eedf23f5a0b44a5b3bb7be5 /scripts/wipe-sysroot | |
parent | 176a36ace1624f3bbe498307aeabbd7935de14e6 (diff) | |
download | openembedded-core-e6ef8399cd8e97b9cd59855e11f1792445f0e65b.tar.gz openembedded-core-e6ef8399cd8e97b9cd59855e11f1792445f0e65b.tar.bz2 openembedded-core-e6ef8399cd8e97b9cd59855e11f1792445f0e65b.zip |
wipe-sysroot: delete pkgdata stamps
The pkgdata stamps now need to be wiped away if the sysroot is destroyed.
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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/wipe-sysroot b/scripts/wipe-sysroot index 1c01166cb9..7ca26fe750 100755 --- a/scripts/wipe-sysroot +++ b/scripts/wipe-sysroot @@ -39,6 +39,8 @@ 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_packagedata.* +rm -rf $STAMPS_DIR/*/*/*.do_packagedata_setscene.* # The sstate manifests rm -rf $SSTATE_MANIFESTS/manifest-*.populate-sysroot |