diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-22 23:28:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-22 23:28:23 +0000 |
commit | 1eeac6612b3e8b09b6baf0688f9121d7f8ffefd8 (patch) | |
tree | 184212a8fd9c28e31219a4e05dfd7a82119a04c3 /Makefile.common | |
parent | 27a08935ca4ccf2121c2cf4bfbf148e2382c7762 (diff) | |
download | external_llvm-1eeac6612b3e8b09b6baf0688f9121d7f8ffefd8.zip external_llvm-1eeac6612b3e8b09b6baf0688f9121d7f8ffefd8.tar.gz external_llvm-1eeac6612b3e8b09b6baf0688f9121d7f8ffefd8.tar.bz2 |
Fix misspelled variable
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4262 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.common')
-rw-r--r-- | Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index 65bb19b..e3599bb 100644 --- a/Makefile.common +++ b/Makefile.common @@ -432,7 +432,7 @@ $(BUILD_ROOT)/Release/%.o: %.cpp $(BUILD_ROOT)/Release/.dir $(VERB) $(CompileO) $< -o $@ $(BUILD_ROOT)/Release/%.o: %.c $(BUILD_ROOT)/Release/.dir - $(VERB) $(CompileOC) $< -o $@ + $(VERB) $(CompileCO) $< -o $@ $(BUILD_ROOT)/Profile/%.o: %.cpp $(BUILD_ROOT)/Profile/.dir @echo "Compiling $<" |