mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
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:
committed by
Richard Purdie
parent
f357e0e942
commit
c2a76d7b10
@@ -292,7 +292,7 @@ rm_by_stamps (){
|
|||||||
|
|
||||||
echo -n "Figuring out the files which will be removed ... "
|
echo -n "Figuring out the files which will be removed ... "
|
||||||
for i in $all_sums; do
|
for i in $all_sums; do
|
||||||
grep ".*-${i}_*" $cache_list >>$keep_list
|
grep ".*-${i}_.*" $cache_list >>$keep_list
|
||||||
done
|
done
|
||||||
echo "Done"
|
echo "Done"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user