Skip to content

Commit 9769bf9

Browse files
fix(makefile): handle MSYS_NT as a valid Windows environment (#1347)
1 parent f7bb32d commit 9769bf9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ else ifeq ($(UNAME), Darwin)
1010
else ifeq ($(UNAME), Windows_NT)
1111
OS := windows
1212
EXT := dll
13+
else ifneq ($(findstring MSYS_NT,$(UNAME)),)
14+
OS := windows
15+
EXT := dll
1316
else
1417
$(error Unsupported operating system: $(UNAME))
1518
endif

0 commit comments

Comments
 (0)