Skip to content
Snippets Groups Projects
Commit be87b11b authored by Han Sol Jin's avatar Han Sol Jin
Browse files

alphaplus: add liblog dependency to 64-bit libimagerwrapper.so

It relies on __android_log_print symbol.

Change-Id: I6499be8dec256ec652e755b788847eed1bdc477d
parent 2dda41cb
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,10 @@ function blob_fixup() {
[ "$2" = "" ] && return 0
${PATCHELF_0_17_2} --replace-needed libstdc++.so libstdc++_vendor.so "${2}"
;;
vendor/lib64/libimagerwrapper.so)
[ "$2" = "" ] && return 0
${PATCHELF_0_17_2} --add-needed liblog.so "${2}"
;;
*)
return 1
;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment