Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion hererocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2433,7 +2433,9 @@ def make(self):
make_args = []
if opts.target == "mingw" and program_exists("mingw32-make"):
make = "mingw32-make"
make_args.append("SHELL=cmd")
if not ("MSYSTEM" in os.environ or "TERM" in os.environ):
# luajit makefile uses dos commands, unless running in msys/cygwin shell
make_args.append("SHELL=cmd")
elif opts.target == "freebsd":
make = "gmake"
else:
Expand Down