Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc32a50f authored by Dan Willemsen's avatar Dan Willemsen
Browse files

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
parent f53737fa
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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")
	})
}