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>
This commit is contained in:
parent
611b5c6d5c
commit
60513d46f6
2
Makefile
2
Makefile
|
@ -152,7 +152,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:
|
||||||
|
|
Loading…
Reference in New Issue