Add a default value to JIGDO_CHECKSUM

This commit is contained in:
Raphaël Hertzog 2020-01-10 14:43:11 +01:00
parent ef9a3146cd
commit 9c1aab43d9
No known key found for this signature in database
GPG Key ID: 03881DABEBC29AB9
2 changed files with 5 additions and 1 deletions

View File

@ -43,6 +43,9 @@ endif
ifndef ARCHIVE_KEYRING_FILE
ARCHIVE_KEYRING_FILE=usr/share/keyrings/debian-archive-keyring.gpg
endif
ifndef JIGDO_CHECKSUM
JIGDO_CHECKSUM=md5
endif
export BUILD_DATE=$(shell date -u +%Y%m%d-%H:%M)
export ARCHES_NOSRC=$(shell echo $(ARCHES) | sed 's/source//')
@ -506,7 +509,7 @@ imagesums:
$(BDIR)/checksum-check: mirrorcheck
mirrorcheck: ok
$(Q)$(grab_checksums) ${JIGDO_CHECKSUM} $(MIRROR) "$(ARCHES)" $(CODENAME) $(DI_CODENAME) $(BDIR)/checksum-check
$(Q)$(grab_checksums) $(JIGDO_CHECKSUM) $(MIRROR) "$(ARCHES)" $(CODENAME) $(DI_CODENAME) $(BDIR)/checksum-check
$(Q)for ARCH in $(ARCHES); do \
if [ -e $(BASEDIR)/data/$(CODENAME)/$$ARCH/extra-sources ]; then \
echo "Extra dedicated source added; need to grab source checksum info too"; \

1
debian/changelog vendored
View File

@ -23,6 +23,7 @@ debian-cd (3.1.28) UNRELEASED; urgency=medium
* Fix a quoting bug that leads to failure in start_new_disc
when CODENAME is kali-last-snapshot.
* Add symlinks for kali-last-snapshot in data/, tasks/ and tools/boot/.
* Add a default value to JIGDO_CHECKSUM.
-- Holger Levsen <holger@debian.org> Wed, 23 Oct 2019 18:06:41 +0200