[llvm-commits] [llvm] r78185 - /llvm/trunk/Makefile.rules

Anton Korobeynikov asl at math.spbu.ru
Wed Aug 5 02:37:47 PDT 2009


Author: asl
Date: Wed Aug  5 04:37:43 2009
New Revision: 78185

URL: http://llvm.org/viewvc/llvm-project?rev=78185&view=rev
Log:
Add executable suffix for the tool. This is needed e.g. for 'make install' on mingw32.

Modified:
    llvm/trunk/Makefile.rules

Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=78185&r1=78184&r2=78185&view=diff

==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Wed Aug  5 04:37:43 2009
@@ -1212,7 +1212,7 @@
 uninstall-local::
 	$(Echo) Uninstall circumvented with NO_INSTALL
 else
-DestTool = $(PROJ_bindir)/$(TOOLNAME)
+DestTool = $(PROJ_bindir)/$(TOOLNAME)$(EXEEXT)
 
 install-local:: $(DestTool)
 





More information about the llvm-commits mailing list