summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-10-31 18:52:15 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-10-31 18:52:15 +0000
commit991f66abc14c6e045e21c0861250941c4ebad19b (patch)
tree9fcbd526ddda37b897db2446de646163c010aad6
parent8adaaf474a58218bf8cd927bda4a4f9d7ac11757 (diff)
downloadbcm5719-llvm-991f66abc14c6e045e21c0861250941c4ebad19b.tar.gz
bcm5719-llvm-991f66abc14c6e045e21c0861250941c4ebad19b.zip
Actually use the correct variable name for building bytecode files.
llvm-svn: 17374
-rw-r--r--llvm/Makefile.rules4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/Makefile.rules b/llvm/Makefile.rules
index 54a4b458f9b..497f86a0487 100644
--- a/llvm/Makefile.rules
+++ b/llvm/Makefile.rules
@@ -741,11 +741,11 @@ endif
$(ObjDir)/%.bc: %.cpp $(ObjDir)/.dir
$(Echo) "Compiling $*.cpp (bytecode)"
- $(BCCompileCPP) $< -o $@
+ $(BCCompile.CXX) $< -o $@
$(ObjDir)/%.bc: %.c $(ObjDir)/.dir
$(Echo) "Compiling $*.c (bytecode)"
- $(BCCompileC) $< -o $@
+ $(BCCompile.C) $< -o $@
endif
OpenPOWER on IntegriCloud