MSYS2 build fix. DONT_BUILD.

git-svn-id: https://svn.eduke32.com/eduke32@4924 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2015-01-16 06:30:48 +00:00
parent bd27267b6b
commit 8e21ad20c2

View file

@ -295,7 +295,10 @@ ifeq (1,$(strip $(shell expr $(GCC_MAJOR) \>= 4)))
endif
ifeq ($(HOST),WINDOWS)
DONT_PRINT = > NUL 2>&1
# MSYS2 lets you create files named NUL but has a /dev/null. Go figure.
ifeq (,$(wildcard /dev/null))
DONT_PRINT = > NUL 2>&1
endif
endif
ifeq ($(PLATFORM),WINDOWS)