summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrançois Gaffie <francois.gaffie@intel.com>2016-02-16 13:53:19 +0100
committerEric Laurent <elaurent@google.com>2016-02-25 11:47:31 -0800
commit0efdadfc1eacc7271c8f854a8a610fdc2cc66102 (patch)
tree08e008915152e72917ee6dad959b75bf1721d126
parent04859340dca73b7f0ebee593b0ea7ac6c5163aed (diff)
downloadparameter-framework-0efdadfc1eacc7271c8f854a8a610fdc2cc66102.tar.gz
parameter-framework: allow to use custom parameter manager
Android build system prevents from having the same module target refered in more than one makefile. Some platform may need to use a custom parameter manager version than the aosp version of the PFW. This patch inhibits the AOSP PFW if USE_CUSTOM_PARAMETER_MANAGER is set to true. Change-Id: Ifc56ef44b2b3928329fc59e7984bef4959453419 Signed-off-by: François Gaffie <francois.gaffie@intel.com>
-rw-r--r--Android.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index 5786156..b0ec4a5 100644
--- a/Android.mk
+++ b/Android.mk
@@ -13,6 +13,8 @@ endif
# Recursive call sub-folder Android.mk
#
+ifneq ($(USE_CUSTOM_PARAMETER_FRAMEWORK), true)
ifeq ($(HOST_OS),linux)
include $(call all-subdir-makefiles)
endif
+endif