From: Reid Spencer Date: Thu, 19 May 2005 21:10:31 +0000 (+0000) Subject: Make sure that tool names don't have any leading or trailing spaces in them. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ad38cd6ad09ff714b7109b31fe7b49e754a9bce4;p=oota-llvm.git 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22142 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-ranlib/Makefile b/tools/llvm-ranlib/Makefile index 506687f3209..b7e47715433 100644 --- a/tools/llvm-ranlib/Makefile +++ b/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