Skip to content

Commit 577056b

Browse files
authored
Makefile: add -a 256 to sha3sum so it works on Mac (#519)
1 parent cc455f7 commit 577056b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ sqlite-src: sqlite-src/$(SQLITE_AMALGAMATION) sqlite-src/$(SQLITE_AMALGAMATION)/
173173
sqlite-src/$(SQLITE_AMALGAMATION): cache/$(SQLITE_AMALGAMATION).zip sqlite-src/$(SQLITE_AMALGAMATION)/$(EXTENSION_FUNCTIONS)
174174
mkdir -p sqlite-src/$(SQLITE_AMALGAMATION)
175175
echo '$(SQLITE_AMALGAMATION_ZIP_SHA3) ./cache/$(SQLITE_AMALGAMATION).zip' > cache/check.txt
176-
sha3sum -c cache/check.txt
176+
sha3sum -a 256 -c cache/check.txt
177177
# We don't delete the sqlite_amalgamation folder. That's a job for clean
178178
# Also, the extension functions get copied here, and if we get the order of these steps wrong,
179179
# this step could remove the extension functions, and that's not what we want

0 commit comments

Comments
 (0)