Fix _clean_shasums to also remove *.img.sha256.

Commit 422a0d60 fixed the img.sha256 target itself, but it didn't update
the corresponding clean variant, so add that too.

Signed-off-by: Diederik de Haas <didi.debian@cknow.org>
(cherry picked from commit 60513d46f6)
Signed-off-by: Cyril Brulebois <cyril@debamax.com>
This commit is contained in:
Diederik de Haas 2021-09-09 01:00:59 +02:00 committed by Cyril Brulebois
parent 650da9d351
commit 66f43b854f
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ _clean_xzimages:
_clean_bmaps: _clean_bmaps:
rm -f $(addsuffix .img.bmap,$(platforms)) rm -f $(addsuffix .img.bmap,$(platforms))
_clean_shasums: _clean_shasums:
rm -f $(addsuffix .sha256,$(platforms)) $(addsuffix .img.xz.sha256,$(platforms)) rm -f $(addsuffix .img.sha256,$(platforms)) $(addsuffix .img.xz.sha256,$(platforms))
_clean_logs: _clean_logs:
rm -f $(addsuffix .log,$(platforms)) rm -f $(addsuffix .log,$(platforms))
_clean_tarballs: _clean_tarballs: