diff options
author | David Wagner <david.wagner@intel.com> | 2015-03-02 15:05:05 +0100 |
---|---|---|
committer | Eric Laurent <elaurent@google.com> | 2015-04-24 13:32:48 -0700 |
commit | 9ab48db4862975f81cb19cf3f9db06b26194fc34 (patch) | |
tree | c2384c83c5e3b00880ecb804641f839d56201517 | |
parent | 0e0503f06659dea8243da85c994ded98686b045d (diff) | |
download | external_parameter-framework-9ab48db4862975f81cb19cf3f9db06b26194fc34.zip external_parameter-framework-9ab48db4862975f81cb19cf3f9db06b26194fc34.tar.gz external_parameter-framework-9ab48db4862975f81cb19cf3f9db06b26194fc34.tar.bz2 |
Android/xmlGenerator: Fix domainGenerator.py's dependencies
32bit target names are postfixed with "_32". This was missed in the list
"required modules" for domainGenerator.py" which caused _PyPfw.so not being
compiled when needed.
Android only contains a 32bit version of prebuilt python.
Fix LOCAL_REQUIRED_MODULES for domainGenerator.py
Change-Id: Ieda460d0c4785bc2d1c2c14e38f5a73c66672497
Signed-off-by: David Wagner <david.wagner@intel.com>
-rw-r--r-- | tools/xmlGenerator/Android.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/xmlGenerator/Android.mk b/tools/xmlGenerator/Android.mk index 549668a..43256ed 100644 --- a/tools/xmlGenerator/Android.mk +++ b/tools/xmlGenerator/Android.mk @@ -74,7 +74,7 @@ LOCAL_SRC_FILES := $(LOCAL_MODULE) LOCAL_MODULE_CLASS := EXECUTABLES LOCAL_IS_HOST_MODULE := true LOCAL_REQUIRED_MODULES := \ - _PyPfw \ + _PyPfw_32 \ EddParser.py \ PfwBaseTranslator.py \ hostConfig.py |