Actually use the correct variable name for building bytecode files.
authorReid Spencer <rspencer@reidspencer.com>
Sun, 31 Oct 2004 18:52:15 +0000 (18:52 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sun, 31 Oct 2004 18:52:15 +0000 (18:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17374 91177308-0d34-0410-b5e6-96231b3b80d8

Makefile.rules

index 54a4b458f9b4f53d1138f38b9fe49ff0be478e88..497f86a0487ebb8ca4fac2b51648eefc2735dfcd 100644 (file)
@@ -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