Skip to content

Commit e438c1b

Browse files
committed
Fix shasum format
1 parent 0bd985f commit e438c1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mk/external.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ define download
1919
$($(T)_DATA):
2020
$(VECHO) " GET\t$$@\n"
2121
$(Q)curl --progress-bar -O -L -C - "$(strip $($(T)_DATA_URL))"
22-
$(Q)echo "$(strip $$($(T)_DATA_SHA1)) $$@.bz2" | $(SHA1SUM) -c
22+
$(Q)echo "$(strip $$($(T)_DATA_SHA1)) $$@.bz2" | $(SHA1SUM) -c
2323
$(Q)bunzip2 $$@.bz2
2424
endef
2525

2626
EXTERNAL_DATA = KERNEL INITRD
27-
$(foreach T,$(EXTERNAL_DATA),$(eval $(download)))
27+
$(foreach T,$(EXTERNAL_DATA),$(eval $(download)))

0 commit comments

Comments
 (0)