sstate-cache-management.sh: fix regexp in checksum grep

* using checksum without recipe/task name doesn't seem like good idea IMHO

(From OE-Core rev: ef1044da4b30b9a1264a7c83727a722a4b0b60cc)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Martin Jansa 2012-09-02 13:13:18 +02:00 committed by Richard Purdie
parent f357e0e942
commit c2a76d7b10
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ rm_by_stamps (){
echo -n "Figuring out the files which will be removed ... "
for i in $all_sums; do
grep ".*-${i}_*" $cache_list >>$keep_list
grep ".*-${i}_.*" $cache_list >>$keep_list
done
echo "Done"