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 | |
parent | b48f823f907e7763ed4178726c00453fb2af7a28 (diff) | |
download | lz4-2acddd9918bdef87179d63fd06dc31e9d9bc3f1e.zip lz4-2acddd9918bdef87179d63fd06dc31e9d9bc3f1e.tar.gz lz4-2acddd9918bdef87179d63fd06dc31e9d9bc3f1e.tar.bz2 |
Fix a test for mingw
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | Makefile.inc | 2 | ||||
-rw-r--r-- | lib/Makefile | 2 | ||||
-rw-r--r-- | tests/Makefile | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -84,7 +84,7 @@ clean: #----------------------------------------------------------------------------- # make install is validated only for Linux, OSX, BSD, Hurd and Solaris targets #----------------------------------------------------------------------------- -ifeq ($(POSIX_ENV),yes) +ifeq ($(POSIX_ENV),Yes) HOST_OS = POSIX .PHONY: install uninstall diff --git a/Makefile.inc b/Makefile.inc index d9dc891..c09ba62 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -52,7 +52,7 @@ VOID := /dev/null endif endif -ifneq (,$(filter Linux Darwin GNU/kFreeBSD GNU OpenBSD FreeBSD NetBSD DragonFly SunOS Haiku MidnightBSD MINGW32% MINGW64% CYGWIN% MSYS%,$(shell uname))) +ifneq (,$(filter Linux Darwin GNU/kFreeBSD GNU OpenBSD FreeBSD NetBSD DragonFly SunOS Haiku MidnightBSD MINGW% CYGWIN% MSYS%,$(shell uname))) POSIX_ENV = Yes else POSIX_ENV = No diff --git a/lib/Makefile b/lib/Makefile index 0546031..28853df 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -123,7 +123,7 @@ clean: #----------------------------------------------------------------------------- # make install is validated only for Linux, OSX, BSD, Hurd and Solaris targets #----------------------------------------------------------------------------- -ifeq ($(POSIX_ENV),yes) +ifeq ($(POSIX_ENV),Yes) .PHONY: listL120 listL120: # extract lines >= 120 characters in *.{c,h}, by Takayuki Matsuoka (note : $$, for Makefile compatibility) 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 )) |