diff options
Diffstat (limited to 'python/python.go')
-rw-r--r-- | python/python.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/python/python.go b/python/python.go index ab80e4d2b..df5999d8a 100644 --- a/python/python.go +++ b/python/python.go @@ -152,14 +152,15 @@ var _ PythonDependency = (*pythonBaseModule)(nil) var _ android.AndroidMkDataProvider = (*pythonBaseModule)(nil) func InitPythonBaseModule(baseModule *pythonBaseModule, subModule PythonSubModule, - hod android.HostOrDeviceSupported, - props ...interface{}) (blueprint.Module, []interface{}) { + hod android.HostOrDeviceSupported) android.Module { baseModule.subModule = subModule - props = append(props, &baseModule.properties) + baseModule.AddProperties(&baseModule.properties) - return android.InitAndroidArchModule(baseModule, hod, android.MultilibCommon, props...) + android.InitAndroidArchModule(baseModule, hod, android.MultilibCommon) + + return baseModule } // the tag used to mark dependencies within "py_libs" attribute. |