From: Thomas Braun Date: Sat, 8 Feb 2014 16:26:53 +0000 (+0100) Subject: Fix compilation with make mingw32 X-Git-Tag: curl-7_36_0~164 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bcb32e915eb700d058e12b2f3bd8b103a16244d8;p=thirdparty%2Fcurl.git Fix compilation with make mingw32 The source files from lib/vtls where generated in lib instead of lib/vtls. Verified-by: Thomas Braun --- diff --git a/lib/Makefile.m32 b/lib/Makefile.m32 index a401c71f62..afe3982dc3 100644 --- a/lib/Makefile.m32 +++ b/lib/Makefile.m32 @@ -285,7 +285,7 @@ $(libcurl_dll_LIBRARY): $(libcurl_a_OBJECTS) $(RESOURCE) $(libcurl_dll_DEPENDENC $(libcurl_a_OBJECTS) $(RESOURCE) $(DLL_LIBS) %.o: %.c $(PROOT)/include/curl/curlbuild.h - $(CC) $(INCLUDES) $(CFLAGS) -c $< + $(CC) $(INCLUDES) $(CFLAGS) -c $< -o $@ %.res: %.rc $(RC) $(RCFLAGS) $< -o $@