diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-05-28 07:22:42 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-05-28 07:22:42 +0000 |
commit | 492196c89f922cf3a4cc6b426cd1a34414dfb447 (patch) | |
tree | 181710a315debebf5f86d867db3700049f57f4bf /test/Makefile | |
parent | 15d40594303072ed426116cfb9465a05313545e9 (diff) | |
download | external_llvm-492196c89f922cf3a4cc6b426cd1a34414dfb447.zip external_llvm-492196c89f922cf3a4cc6b426cd1a34414dfb447.tar.gz external_llvm-492196c89f922cf3a4cc6b426cd1a34414dfb447.tar.bz2 |
Fix a problem where dejagnu won't accept the value of global tcl variable
"libdir" for some reason. Changing to llvmlibsdir instead fixes it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28526 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile index 77e6e4b..f06d389 100644 --- a/test/Makefile +++ b/test/Makefile @@ -47,8 +47,8 @@ site.exp: Makefile $(LLVM_OBJ_ROOT)/Makefile.config @echo 'set target_triplet "$(TARGET_TRIPLE)"' >> site.tmp @echo 'set llvmgcc_version "$(LLVMGCC_VERSION)"' >> site.tmp @echo 'set prcontext "$(TCLSH) $(LLVM_SRC_ROOT)/test/Scripts/prcontext.tcl"' >> site.tmp - @echo 'set tooldir "$(ToolDir)"' >>site.tmp - @echo 'set libdir "$(LibDir)"' >>site.tmp + @echo 'set llvmtoolsdir "$(ToolDir)"' >>site.tmp + @echo 'set llvmlibsdir "$(LibDir)"' >>site.tmp @echo 'set srcroot "$(LLVM_SRC_ROOT)"' >>site.tmp @echo 'set objroot "$(LLVM_OBJ_ROOT)"' >>site.tmp @echo 'set srcdir "$(LLVM_SRC_ROOT)/test"' >>site.tmp |