Browse Source

scripts/sstate-cache-management.sh: Fix stamp handling after recent layout change

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Richard Purdie 11 years ago
parent
commit
8df3350d10
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/sstate-cache-management.sh

+ 1 - 1
scripts/sstate-cache-management.sh

@@ -294,7 +294,7 @@ rm_by_stamps (){
   for i in $suffixes; do
       # There is no "\.sigdata" but "_setcene" when it is mirrored
       # from the SSTATE_MIRRORS, use them to figure out the sum.
-      sums=`find $stamps -maxdepth 2 -name "*.do_$i.*" \
+      sums=`find $stamps -maxdepth 3 -name "*.do_$i.*" \
         -o -name "*.do_${i}_setscene.*" | \
         sed -ne 's#.*_setscene\.##p' -e 's#.*\.sigdata\.##p' | \
         sed -e 's#\..*##' | sort -u`