diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/sstate-cache-management.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/sstate-cache-management.sh b/scripts/sstate-cache-management.sh index d741ec93f2..34bde01970 100755 --- a/scripts/sstate-cache-management.sh +++ b/scripts/sstate-cache-management.sh | |||
@@ -330,11 +330,11 @@ rm_by_stamps (){ | |||
330 | # Figure out all the md5sums in the stamps dir. | 330 | # Figure out all the md5sums in the stamps dir. |
331 | echo "Figuring out all the md5sums in stamps dir ... " | 331 | echo "Figuring out all the md5sums in stamps dir ... " |
332 | for i in $suffixes; do | 332 | for i in $suffixes; do |
333 | # There is no "\.siginfo" but "_setcene" when it is mirrored | 333 | # There is no "\.sigdata" but "_setcene" when it is mirrored |
334 | # from the SSTATE_MIRRORS, use them to figure out the sum. | 334 | # from the SSTATE_MIRRORS, use them to figure out the sum. |
335 | sums=`find $stamps -maxdepth 3 -name "*.do_$i.*" \ | 335 | sums=`find $stamps -maxdepth 3 -name "*.do_$i.*" \ |
336 | -o -name "*.do_${i}_setscene.*" | \ | 336 | -o -name "*.do_${i}_setscene.*" | \ |
337 | sed -ne 's#.*_setscene\.##p' -e 's#.*\.siginfo\.##p' | \ | 337 | sed -ne 's#.*_setscene\.##p' -e 's#.*\.sigdata\.##p' | \ |
338 | sed -e 's#\..*##' | sort -u` | 338 | sed -e 's#\..*##' | sort -u` |
339 | all_sums="$all_sums $sums" | 339 | all_sums="$all_sums $sums" |
340 | done | 340 | done |