Enforce cmd shell when started from regular command prompt even if sh.exe is in path

This commit is contained in:
Miodrag Milanovic 2016-01-03 17:49:57 +01:00
parent 698cec6344
commit ad04d3cda4

View File

@ -115,6 +115,10 @@ ifeq ($(OS),Windows_NT)
OS := windows
GENIEOS := windows
PLATFORM := x86
ifeq ($(MSYSTEM),)
SHELL := cmd
MAKEPARAMS += SHELL=cmd
endif
else
UNAME := $(shell uname -mps)
UNAME_M := $(shell uname -m)