diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-24 03:38:01 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-24 03:38:01 +0000 |
commit | 4a25494ee69a4b325ec54fd214a20a571b6ac387 (patch) | |
tree | 9f28852195f6eafccada062b8f3b3c5df5a5f675 /test/Makefile | |
parent | 32924e01f3250b0ca9f577172625f83ad9bac472 (diff) | |
download | external_llvm-4a25494ee69a4b325ec54fd214a20a571b6ac387.zip external_llvm-4a25494ee69a4b325ec54fd214a20a571b6ac387.tar.gz external_llvm-4a25494ee69a4b325ec54fd214a20a571b6ac387.tar.bz2 |
The dejagnu scripts need a path for llvm-gcc/llvm-g++ as well so use the
correct variable to get a "set the path first" invocation of those tools.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19127 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 03d63a3..cd05c29 100644 --- a/test/Makefile +++ b/test/Makefile @@ -44,8 +44,8 @@ site.exp: Makefile $(LLVM_OBJ_ROOT)/Makefile.config @echo 'set prcontext "$(TCLSH) $(LLVM_SRC_ROOT)/test/Scripts/prcontext.tcl"' >> site.tmp @echo 'set srcdir $(LLVM_SRC_ROOT)/test' >>site.tmp @echo "set objdir $(LLVM_OBJ_ROOT)/test" >>site.tmp - @echo 'set llvmgcc $(LLVMGCC)' >> site.tmp - @echo 'set llvmgxx $(LLVMGXX)' >> site.tmp + @echo 'set llvmgcc "$(LLVMGCCWITHPATH)"' >> site.tmp + @echo 'set llvmgxx "$(LLVMGXXWITHPATH)"' >> site.tmp @echo '## All variables above are generated by configure. Do Not Edit ## ' >>site.tmp @test ! -f site.exp || \ sed '1,/^## All variables above are.*##/ d' site.exp >> site.tmp |