diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-31 18:52:15 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-31 18:52:15 +0000 |
| commit | 991f66abc14c6e045e21c0861250941c4ebad19b (patch) | |
| tree | 9fcbd526ddda37b897db2446de646163c010aad6 | |
| parent | 8adaaf474a58218bf8cd927bda4a4f9d7ac11757 (diff) | |
| download | bcm5719-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.rules | 4 |
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 |

