Skip to content

Commit

Permalink
Fix shasum format
Browse files Browse the repository at this point in the history
  • Loading branch information
ChinYikMing committed Sep 12, 2024
1 parent 0bd985f commit e438c1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mk/external.mk
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ define download
$($(T)_DATA):
$(VECHO) " GET\t$$@\n"
$(Q)curl --progress-bar -O -L -C - "$(strip $($(T)_DATA_URL))"
$(Q)echo "$(strip $$($(T)_DATA_SHA1)) $$@.bz2" | $(SHA1SUM) -c
$(Q)echo "$(strip $$($(T)_DATA_SHA1)) $$@.bz2" | $(SHA1SUM) -c
$(Q)bunzip2 $$@.bz2
endef

EXTERNAL_DATA = KERNEL INITRD
$(foreach T,$(EXTERNAL_DATA),$(eval $(download)))
$(foreach T,$(EXTERNAL_DATA),$(eval $(download)))

0 comments on commit e438c1b

Please sign in to comment.