diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-08-05 09:37:43 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-08-05 09:37:43 +0000 |
commit | 1bb812e86b1d8f77c29634e45f12cfcde3ed63eb (patch) | |
tree | fc64d6c39fcd8923f5d56e670674faa6e17b66c1 | |
parent | 0c3f8d5f5372f7ebf4e754e70a52a5e3df3f445d (diff) | |
download | bcm5719-llvm-1bb812e86b1d8f77c29634e45f12cfcde3ed63eb.tar.gz bcm5719-llvm-1bb812e86b1d8f77c29634e45f12cfcde3ed63eb.zip |
Add executable suffix for the tool. This is needed e.g. for 'make install' on mingw32.
llvm-svn: 78185
-rw-r--r-- | llvm/Makefile.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/Makefile.rules b/llvm/Makefile.rules index 6fe68681b1e..5a5544cc21a 100644 --- a/llvm/Makefile.rules +++ b/llvm/Makefile.rules @@ -1212,7 +1212,7 @@ install-local:: uninstall-local:: $(Echo) Uninstall circumvented with NO_INSTALL else -DestTool = $(PROJ_bindir)/$(TOOLNAME) +DestTool = $(PROJ_bindir)/$(TOOLNAME)$(EXEEXT) install-local:: $(DestTool) |