mirror of
https://github.com/facebook/zstd.git
synced 2025-07-30 22:23:13 +03:00
Use standard md5 tool on NetBSD.
This avoids a GNU coreutils dependency. -n is used to match the output format of coreutils: http://man.netbsd.org/md5.1
This commit is contained in:
@ -104,6 +104,8 @@ ifeq ($(UNAME), Darwin)
|
||||
HASH ?= md5
|
||||
else ifeq ($(UNAME), FreeBSD)
|
||||
HASH ?= gmd5sum
|
||||
else ifeq ($(UNAME), NetBSD)
|
||||
HASH ?= md5 -n
|
||||
else ifeq ($(UNAME), OpenBSD)
|
||||
HASH ?= md5
|
||||
endif
|
||||
|
Reference in New Issue
Block a user