Skip to content

Commit ff0eb5b

Browse files
committed
fix: quote msys make command for Windows compatibility
1 parent 2b8e2a9 commit ff0eb5b

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
@@ -245,7 +245,7 @@ $(CURL_LIB):
245245
# --without-libgsasl \
246246
247247
ifeq ($(PLATFORM),windows)
248-
cd $(CURL_SRC) && C:\msys64\usr\bin\make.exe
248+
cd $(CURL_SRC) && "C:\msys64\usr\bin\make.exe"
249249
else
250250
cd $(CURL_SRC) && make
251251
endif

0 commit comments

Comments
 (0)