Fix _clean_shasums to also remove *.img.sha256.
Commit422a0d60
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 commit60513d46f6
) Signed-off-by: Cyril Brulebois <cyril@debamax.com>
This commit is contained in:
parent
650da9d351
commit
66f43b854f
2
Makefile
2
Makefile
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue