Force the normal Windows build to OSTYPE := Windows

If someone really want's overwrite OSTYPE on Windows it's much easier to
just alter one line in the Makefile than supporting setting it through
the command line.
This commit is contained in:
Yamagi Burmeister 2016-12-03 09:17:21 +01:00
parent 248662ff73
commit 20caca09e3

View file

@ -100,7 +100,7 @@ endif
# Detect the OS
ifdef SystemRoot
OSTYPE ?= Windows
OSTYPE := Windows
else
OSTYPE ?= $(shell uname -s)
endif