diff options
author | JPeterMugaas <jpmugaas@suddenlink.net> | 2019-04-22 20:06:04 (GMT) |
---|---|---|
committer | JPeterMugaas <jpmugaas@suddenlink.net> | 2019-04-22 20:06:04 (GMT) |
commit | 2acddd9918bdef87179d63fd06dc31e9d9bc3f1e (patch) | |
tree | 241e8415c60b5cddba4a7b94ba6e5bfa078ed980 /tests/Makefile | |
parent | b48f823f907e7763ed4178726c00453fb2af7a28 (diff) | |
download | lz4-2acddd9918bdef87179d63fd06dc31e9d9bc3f1e.zip lz4-2acddd9918bdef87179d63fd06dc31e9d9bc3f1e.tar.gz lz4-2acddd9918bdef87179d63fd06dc31e9d9bc3f1e.tar.bz2 |
Fix a test for mingw
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile index b9afb02..9b7ed8d 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -129,7 +129,7 @@ checkTag: checkTag.c $(LZ4DIR)/lz4.h #----------------------------------------------------------------------------- # validated only for Linux, OSX, BSD, Hurd and Solaris targets #----------------------------------------------------------------------------- -ifeq ($(POSIX_ENV),yes) +ifeq ($(POSIX_ENV),Yes) MD5:=md5sum ifneq (,$(filter $(shell uname), Darwin )) |