Skip to content

Commit 09e1325

Browse files
committed
Resolve sha1sum compatibility
Recent sha1sum expects standard input from pipe, and explit '-' is required.
1 parent 36fc1b2 commit 09e1325

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mk/external.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ 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

0 commit comments

Comments
 (0)