aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-02-05 20:49:49 +0000
committerMike Stump <mrs@apple.com>2009-02-05 20:49:49 +0000
commite02768d79632e683b97a926f5c963b25514a2f99 (patch)
tree3ab97214a10e2a9157e4a636fe4311a499c6adb9
parent7dbe5001a4f6f568a2650ac7c4fb52760f7183ef (diff)
downloadexternal_llvm-e02768d79632e683b97a926f5c963b25514a2f99.zip
external_llvm-e02768d79632e683b97a926f5c963b25514a2f99.tar.gz
external_llvm-e02768d79632e683b97a926f5c963b25514a2f99.tar.bz2
FIx spelling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63883 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--utils/unittest/googletest/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/unittest/googletest/Makefile b/utils/unittest/googletest/Makefile
index db18296..801506e 100644
--- a/utils/unittest/googletest/Makefile
+++ b/utils/unittest/googletest/Makefile
@@ -10,12 +10,12 @@
LEVEL := ../../..
include $(LEVEL)/Makefile.config
NO_MISSING_FIELD_INITIALIZERS := $(shell $(CXX) -Wno-missing-field-initializers -fsyntax-only -xc /dev/null 2>/dev/null && echo -Wno-missing-field-initializers)
-NO_VAROADIC_MACROS := $(shell $(CXX) -Wno-variadic-macros -fsyntax-only -xc /dev/null 2>/dev/null && echo -Wno-variadic-macros)
+NO_VARIADIC_MACROS := $(shell $(CXX) -Wno-variadic-macros -fsyntax-only -xc /dev/null 2>/dev/null && echo -Wno-variadic-macros)
LIBRARYNAME = GoogleTest
BUILD_ARCHIVE = 1
CPP.Flags += -I$(LLVM_SRC_ROOT)/utils/unittest/googletest/include/
-CPP.Flags += $(NO_MISSING_FIELD_INITIALIZERS) $(NO_VAROADIC_MACROS)
+CPP.Flags += $(NO_MISSING_FIELD_INITIALIZERS) $(NO_VARIADIC_MACROS)
include $(LEVEL)/Makefile.common