diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-18 20:04:39 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-18 20:04:39 +0000 |
commit | 9a5acafd04a70efd4938855fd748e130d92540cd (patch) | |
tree | b83f2e419d24260ece330adf76d8721ce50540c9 | |
parent | d29c636a00cfa13c2ba8f4f25e07dd821d9b395d (diff) | |
download | external_llvm-9a5acafd04a70efd4938855fd748e130d92540cd.zip external_llvm-9a5acafd04a70efd4938855fd748e130d92540cd.tar.gz external_llvm-9a5acafd04a70efd4938855fd748e130d92540cd.tar.bz2 |
Duh, put tools in *bin* directory, not *tools* directory as per
PR456.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17964 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile.rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules index d929ae8..1438f91 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -177,10 +177,10 @@ LibTool.Flags := --tag=CXX #-------------------------------------------------------------------- ObjDir := $(BUILD_OBJ_DIR)/$(BuildMode) LibDir := $(BUILD_OBJ_ROOT)/$(BuildMode)/lib -ToolDir := $(BUILD_OBJ_ROOT)/$(BuildMode)/tools +ToolDir := $(BUILD_OBJ_ROOT)/$(BuildMode)/bin ExmplDir := $(BUILD_OBJ_ROOT)/$(BuildMode)/examples LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib -LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/tools +LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin LExmplDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/examples #-------------------------------------------------------------------- |