summaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-23 15:56:38 +0000
committerChris Lattner <sabre@nondot.org>2003-08-23 15:56:38 +0000
commit72987eeafd0afba2bf2c2860e9cffb0051f26e93 (patch)
treea6678cb035d4266f4ed056d11627ae006150a6a5 /Makefile.common
parent2fa6c35d6946402595ad8824c7fc3ab0f736593a (diff)
downloadllvm-72987eeafd0afba2bf2c2860e9cffb0051f26e93.tar.gz
llvm-72987eeafd0afba2bf2c2860e9cffb0051f26e93.tar.bz2
llvm-72987eeafd0afba2bf2c2860e9cffb0051f26e93.tar.xz
Fix typeo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8069 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common
index a524f0b9f1..9f0c523735 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -361,7 +361,7 @@ CompileOptimizeOpts := -O3 -DNDEBUG -finline-functions -fshort-enums
# Compile commands with libtool.
#
Compile := $(LIBTOOL) --mode=compile $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
-CompileC := $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CCFLAGS) $(CompileCommonOpts)
+CompileC := $(LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) $(CompileCommonOpts)
# Compile a cpp file, don't link...
CompileG := $(Compile) -g -D_DEBUG