diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2005-05-19 21:10:31 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2005-05-19 21:10:31 +0000 |
| commit | b19f7a3c22b0653c7d70d9ead4de9e42d18afe6c (patch) | |
| tree | 5eca95a4618aa84ccc12a8f6b037924936b8e7f6 /llvm | |
| parent | 98a2d980ee2791c8664e1b1b18a9a1eda97736c7 (diff) | |
| download | bcm5719-llvm-b19f7a3c22b0653c7d70d9ead4de9e42d18afe6c.tar.gz bcm5719-llvm-b19f7a3c22b0653c7d70d9ead4de9e42d18afe6c.zip | |
Make sure that tool names don't have any leading or trailing spaces in them.
If they do, it screws up the concatenation of the .exe suffix on cygwin.
llvm-svn: 22142
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/tools/llvm-ranlib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-ranlib/Makefile b/llvm/tools/llvm-ranlib/Makefile index 506687f3209..b7e47715433 100644 --- a/llvm/tools/llvm-ranlib/Makefile +++ b/llvm/tools/llvm-ranlib/Makefile @@ -8,7 +8,7 @@ ##===----------------------------------------------------------------------===## LEVEL = ../.. -TOOLNAME = llvm-ranlib +TOOLNAME = llvm-ranlib USEDLIBS = LLVMArchive.a LLVMBCReader \ LLVMCore LLVMSupport.a LLVMbzip2 LLVMSystem.a |

