Skip to content

Commit

Permalink
Use shasum -a 256 instead of sha256sum
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeepmistry committed Dec 2, 2016
1 parent cf75d38 commit b533e2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ PACKAGE_FOLDER := CMSIS-Atmel

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

Expand Down

0 comments on commit b533e2f

Please sign in to comment.