diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2012-09-02 13:13:18 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-04 12:53:08 +0100 |
commit | c2a76d7b107cfc8768115af91efaf762080ee947 (patch) | |
tree | 0d40de6eb4fb27de620bf3465f74c41756c3ef8b /scripts | |
parent | f357e0e94223231a58bf60e9fe81c5263a59892d (diff) | |
download | ast2050-yocto-poky-c2a76d7b107cfc8768115af91efaf762080ee947.zip ast2050-yocto-poky-c2a76d7b107cfc8768115af91efaf762080ee947.tar.gz |
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>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/sstate-cache-management.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/sstate-cache-management.sh b/scripts/sstate-cache-management.sh index a1f7c89..2b3100c 100755 --- a/scripts/sstate-cache-management.sh +++ b/scripts/sstate-cache-management.sh @@ -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" |