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 | 0ab94a00772671538407d955a7671bc767520658 (patch) | |
tree | a52ec5088815f2dd812d6987d8e2cd50b63e17c5 | |
parent | 26964b6dc1fb1d3335b4c80c76bac7cb6103085c (diff) | |
download | external_llvm-0ab94a00772671538407d955a7671bc767520658.zip external_llvm-0ab94a00772671538407d955a7671bc767520658.tar.gz external_llvm-0ab94a00772671538407d955a7671bc767520658.tar.bz2 |
Add executable suffix for the tool. This is needed e.g. for 'make install' on mingw32.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78185 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules index 6fe6868..5a5544c 100644 --- a/Makefile.rules +++ b/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) |