diff options
author | 2015-08-25 13:01:38 +1000 | |
---|---|---|
committer | 2015-08-25 13:02:01 +1000 | |
commit | f500420346db73af33c5bb62f1875bb9ad501315 (patch) | |
tree | 5cde80ecd1b029d974ac37f73712095b4ef5f28c /3rdparty/genie/src/actions/make/make_csharp.lua | |
parent | f91d3e8feae575546a976cb59a29fa651ec2ffea (diff) |
OS/2 patch for 0.164 [KO Myung-Hun]
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) |