mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
MSYS2 build fix. DONT_BUILD.
git-svn-id: https://svn.eduke32.com/eduke32@4924 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
bd27267b6b
commit
8e21ad20c2
1 changed files with 4 additions and 1 deletions
|
@ -295,7 +295,10 @@ ifeq (1,$(strip $(shell expr $(GCC_MAJOR) \>= 4)))
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(HOST),WINDOWS)
|
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
|
endif
|
||||||
|
|
||||||
ifeq ($(PLATFORM),WINDOWS)
|
ifeq ($(PLATFORM),WINDOWS)
|
||||||
|
|
Loading…
Reference in a new issue