Skip to content

Commit 1f5d9bc

Browse files
committed
fix makefile to use msys bash for curl build on Windows
1 parent 4de3c72 commit 1f5d9bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ endif
261261
# --without-libgsasl \
262262
263263
ifeq ($(PLATFORM),windows)
264-
cd $(CURL_SRC) && "/c/msys64/mingw64/bin/make.exe"
264+
/c/msys64/usr/bin/bash.exe -lc "cd $(CURL_SRC) && make"
265265
else
266266
cd $(CURL_SRC) && make
267267
endif

0 commit comments

Comments
 (0)