Skip to content

Commit b533e2f

Browse files
committed
Use shasum -a 256 instead of sha256sum
1 parent cf75d38 commit b533e2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ PACKAGE_FOLDER := CMSIS-Atmel
3333

3434
ifeq (postpackaging,$(findstring $(MAKECMDGOALS),postpackaging))
3535
PACKAGE_FILENAME=$(PACKAGE_NAME)-$(PACKAGE_VERSION).tar.bz2
36-
PACKAGE_CHKSUM := $(firstword $(shell sha256sum "$(PACKAGE_FILENAME)"))
36+
PACKAGE_CHKSUM := $(firstword $(shell shasum -a 256 "$(PACKAGE_FILENAME)"))
3737
PACKAGE_SIZE := $(firstword $(shell wc -c "$(PACKAGE_FILENAME)"))
3838
endif
3939

0 commit comments

Comments
 (0)