diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-23 15:56:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-23 15:56:38 +0000 |
commit | 72987eeafd0afba2bf2c2860e9cffb0051f26e93 (patch) | |
tree | a6678cb035d4266f4ed056d11627ae006150a6a5 /Makefile.common | |
parent | 2fa6c35d6946402595ad8824c7fc3ab0f736593a (diff) | |
download | llvm-72987eeafd0afba2bf2c2860e9cffb0051f26e93.tar.gz |
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.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common index a524f0b9f193..9f0c523735ae 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 |