Skip to content

Commit

Permalink
Merge pull request #3994 from sunpoet/dev
Browse files Browse the repository at this point in the history
Use md5sum rather than gmd5sum for FreeBSD
  • Loading branch information
Cyan4973 authored Apr 1, 2024
2 parents 4b5a266 + 103a85e commit e3566d6
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions lib/libzstd.mk
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,6 @@ ifeq ($(UNAME), Darwin)
ifeq ($(shell md5 < /dev/null > /dev/null; echo $$?), 0)
HASH ?= md5
endif
else ifeq ($(UNAME), FreeBSD)
HASH ?= gmd5sum
else ifeq ($(UNAME), NetBSD)
HASH ?= md5 -n
else ifeq ($(UNAME), OpenBSD)
Expand Down
1 change: 0 additions & 1 deletion tests/cli-tests/common/platform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ esac

case "$UNAME" in
Darwin) MD5SUM="md5 -r" ;;
FreeBSD) MD5SUM="gmd5sum" ;;
NetBSD) MD5SUM="md5 -n" ;;
OpenBSD) MD5SUM="md5" ;;
*) MD5SUM="md5sum" ;;
Expand Down
1 change: 0 additions & 1 deletion tests/playTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ esac

case "$UNAME" in
Darwin) MD5SUM="md5 -r" ;;
FreeBSD) MD5SUM="gmd5sum" ;;
NetBSD) MD5SUM="md5 -n" ;;
OpenBSD) MD5SUM="md5" ;;
*) MD5SUM="md5sum" ;;
Expand Down

0 comments on commit e3566d6

Please sign in to comment.