diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-22 05:57:50 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-22 05:57:50 +0000 |
commit | c553403233515b8ce22efeefbdb6c888e220c155 (patch) | |
tree | f5b3d6e1b66f3352d56214ff1397864737b4ffb9 /test/Makefile | |
parent | e676067be55ef23a5ea35ac0a05f4c41d3bd1ef7 (diff) | |
download | external_llvm-c553403233515b8ce22efeefbdb6c888e220c155.zip external_llvm-c553403233515b8ce22efeefbdb6c888e220c155.tar.gz external_llvm-c553403233515b8ce22efeefbdb6c888e220c155.tar.bz2 |
For PR432:
* Use LLVMGCC and LLVMGXX variables instead of computing the name
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19097 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 7e3d129..03d63a3 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 $(LLVMGCCDIR)/bin/gcc' >> site.tmp - @echo 'set llvmgxx $(LLVMGCCDIR)/bin/g++' >> site.tmp + @echo 'set llvmgcc $(LLVMGCC)' >> site.tmp + @echo 'set llvmgxx $(LLVMGXX)' >> 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 |