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/04/09 18:56:06 UTC

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

Author: mturk
Date: Thu Apr  9 16:56:05 2009
New Revision: 763732

URL: http://svn.apache.org/viewvc?rev=763732&view=rev
Log:
Use correct name for dest .res file

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=763732&r1=763731&r2=763732&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/Makefile.msc.in (original)
+++ commons/sandbox/runtime/trunk/src/main/native/Makefile.msc.in Thu Apr  9 16:56:05 2009
@@ -75,8 +75,8 @@
 	$(CXX) $(CFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(INCLUDES) -c -Fo$@ -Fd$(BLDDIR)\$(LIBNAME)-src $<
 
 $(SHAREDLIB): $(COMMON_OBJS) $(@platform@_OBJS)
-	$(RC) /l 0x409 /d "NDEBUG" /i "$(SRCDIR)\include" /fo $(BLDDIR)\$(NAME).res $(SRCDIR)/os/win32/main.rc 
-	$(LINK) $(SHFLAGS) $(LDFLAGS) /DLL /SUBSYSTEM:WINDOWS $(COMMON_OBJS) $(WINDOWS_OBJS) $(BLDDIR)\$(NAME).res /pdb:$(BLDDIR)\$(LIBNAME).pdb /out:$(BLDDIR)\$@
+	$(RC) /l 0x409 /d "NDEBUG" /i "$(SRCDIR)\include" /fo $(BLDDIR)\$(LIBNAME).res $(SRCDIR)/os/win32/main.rc 
+	$(LINK) $(SHFLAGS) $(LDFLAGS) /DLL /SUBSYSTEM:WINDOWS $(COMMON_OBJS) $(WINDOWS_OBJS) $(BLDDIR)\$(LIBNAME).res /pdb:$(BLDDIR)\$(LIBNAME).pdb /out:$(BLDDIR)\$@
 	IF EXIST $(BLDDIR)\$(SHAREDLIB).manifest \
 		mt -nologo -manifest  $(BLDDIR)\$(SHAREDLIB).manifest -outputresource:$(BLDDIR)\$(SHAREDLIB);2 
 	@copy /Y $(BLDDIR)\$(SHAREDLIB) $(BLDDIR)\$(SONAME)