From: Reid Spencer Date: Sun, 31 Oct 2004 18:52:15 +0000 (+0000) Subject: Actually use the correct variable name for building bytecode files. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8676b7eed0bd192c7683ffad0842672dc921039b;p=oota-llvm.git Actually use the correct variable name for building bytecode files. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17374 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile.rules b/Makefile.rules index 54a4b458f9b..497f86a0487 100644 --- a/Makefile.rules +++ b/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