You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/08/11 18:25:01 UTC

svn commit: r803188 - /commons/sandbox/runtime/trunk/src/main/native/Makefile.msc.in

Author: mturk
Date: Tue Aug 11 16:25:01 2009
New Revision: 803188

URL: http://svn.apache.org/viewvc?rev=803188&view=rev
Log:
Add mising slash before libpath:

Modified:
    commons/sandbox/runtime/trunk/src/main/native/Makefile.msc.in

Modified: commons/sandbox/runtime/trunk/src/main/native/Makefile.msc.in
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/Makefile.msc.in?rev=803188&r1=803187&r2=803188&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/Makefile.msc.in (original)
+++ commons/sandbox/runtime/trunk/src/main/native/Makefile.msc.in Tue Aug 11 16:25:01 2009
@@ -160,7 +160,7 @@
 
 $(SSLMODLIB): $(SHAREDLIB) $(OPENSSL_OBJS)
 	$(RC) /l 0x409 /d "NDEBUG" /d STR_PRODUCT="Apache Commons Runtime SSL Module" /d STR_INTNAME="$(SSLNAME)" /i "$(SRCDIR)\include" /fo $@.res $(SRCDIR)/os/win32/main.rc
-	$(LINK) $(SHFLAGS) $(LDFLAGS) $(SSLFLAGS) /DLL /SUBSYSTEM:WINDOWS libpath:"." $(LIBNAME).lib /pdb:$(SSLNAME).pdb /out:$@ @<<
+	$(LINK) $(SHFLAGS) /DLL /SUBSYSTEM:WINDOWS $(LDFLAGS) $(SSLFLAGS) /libpath:"." $(LIBNAME).lib /pdb:$(SSLNAME).pdb /out:$@ @<<
 	$(OPENSSL_OBJS) $@.res
 <<
 	IF EXIST $(SSLMODLIB).manifest \
@@ -168,7 +168,7 @@
 	@copy /Y $@ $(SSLSO)
 
 $(TESTSUITE):  $(SHAREDLIB) @modules@ $(SRCDIR)/test/testsuite.$(OBJ)
-	$(LINK) $(SHFLAGS) $(LDFLAGS) /SUBSYSTEM:CONSOLE libpath:"." $(LIBNAME).lib /pdb:$(TESTSUITE).pdb /out:$@ @<<
+	$(LINK) $(SHFLAGS) /SUBSYSTEM:CONSOLE $(LDFLAGS) /libpath:"." $(LIBNAME).lib /pdb:testsuite.pdb /out:$@ @<<
 	$(SRCDIR)/test/testsuite.$(OBJ)
 <<
 	IF EXIST $@.manifest \