From 0b96565afea3f1b1a6e4585a75c9bd6c2ea74a63 Mon Sep 17 00:00:00 2001 From: David 'Digit' Turner Date: Tue, 19 May 2009 13:04:07 +0200 Subject: [PATCH] Fix typo which prevented APP_CFLAGS, APP_CXXFLAGS and others to work properly in the NDK build system. --- ndk/build/core/definitions.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ndk/build/core/definitions.mk b/ndk/build/core/definitions.mk index 4d978979b..4135faad3 100644 --- a/ndk/build/core/definitions.mk +++ b/ndk/build/core/definitions.mk @@ -264,7 +264,7 @@ NDK_APP_VARS_REQUIRED := APP_MODULES APP_PROJECT_PATH NDK_APP_VARS_OPTIONAL := APP_OPTIM APP_CPPFLAGS APP_CFLAGS APP_CXXFLAGS # the list of all variables that may appear in an Application.mk file -NDK_APP_VARS := $(NDK_APP_VARS_REQUIRED) $(NDK_APPS_VARS_OPTIONAL) +NDK_APP_VARS := $(NDK_APP_VARS_REQUIRED) $(NDK_APP_VARS_OPTIONAL) # ============================================================================= #