From b19f7a3c22b0653c7d70d9ead4de9e42d18afe6c Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Thu, 19 May 2005 21:10:31 +0000 Subject: [PATCH] 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 --- llvm/tools/llvm-ranlib/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/tools/llvm-ranlib/Makefile b/llvm/tools/llvm-ranlib/Makefile index 506687f32096..b7e477154337 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