diff options
Diffstat (limited to '3rdparty/genie/src/actions/make/make_csharp.lua')
-rw-r--r-- | 3rdparty/genie/src/actions/make/make_csharp.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/3rdparty/genie/src/actions/make/make_csharp.lua b/3rdparty/genie/src/actions/make/make_csharp.lua index bc3068518d8..e241e11dc42 100644 --- a/3rdparty/genie/src/actions/make/make_csharp.lua +++ b/3rdparty/genie/src/actions/make/make_csharp.lua @@ -104,6 +104,9 @@ _p('ifeq (/bin,$(findstring /bin,$(SHELL)))') _p(' SHELLTYPE := posix') _p('endif') + _p('ifeq (/bin,$(findstring /bin,$(MAKESHELL)))') + _p(' SHELLTYPE := posix') + _p('endif') _p('') _p('ifeq (posix,$(SHELLTYPE))') @@ -173,6 +176,9 @@ _p('ifeq (/bin,$(findstring /bin,$(SHELL)))') _p(' SHELLTYPE := posix') _p('endif') + _p('ifeq (/bin,$(findstring /bin,$(MAKESHELL)))') + _p(' SHELLTYPE := posix') + _p('endif') _p('') -- main build rule(s) |