diff options
author | Dan Willemsen <dwillemsen@google.com> | 2020-03-11 20:54:00 +0000 |
---|---|---|
committer | Dan Willemsen <dwillemsen@google.com> | 2020-03-11 20:55:17 +0000 |
commit | bc32a50ff424a612ecd72548625eed0d50ab95fc (patch) | |
tree | a4005fba19cb8994988010d2a98dc7f4e15f466b /python | |
parent | f53737fadce6b2ffda3438593cf48bf7314cfb18 (diff) |
Don't check elf properties of python prebuilts
We're not doing a great job of copying over all the library dependencies (especially when using sanitizer libraries). Just omit these from the checks, which shouldn't really matter.
Bug: 151093572
Change-Id: I8470bbfbf36a51739e8a7e699ad090a66c9db8b2
Test: treehugger
Diffstat (limited to 'python')
-rw-r--r-- | python/androidmk.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/androidmk.go b/python/androidmk.go index 8e8e8efbf..d293d52a1 100644 --- a/python/androidmk.go +++ b/python/androidmk.go @@ -100,5 +100,6 @@ func (installer *pythonInstaller) AndroidMk(base *Module, ret *android.AndroidMk fmt.Fprintln(w, "LOCAL_MODULE_PATH := "+path) fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem) fmt.Fprintln(w, "LOCAL_SHARED_LIBRARIES := "+strings.Join(installer.androidMkSharedLibs, " ")) + fmt.Fprintln(w, "LOCAL_CHECK_ELF_FILES := false") }) } |