Commit c9950325 authored by Benjamin Deroche's avatar Benjamin Deroche

Fix android build fail check when using a different locale than english

parent 0d0899bc
...@@ -248,7 +248,7 @@ function android_build_verify_so { ...@@ -248,7 +248,7 @@ function android_build_verify_so {
fi fi
android_build_check_fail android_build_check_fail
local elfoutput=$($readelf_bin -d ${sofile}) local elfoutput=$(LC_ALL=C $readelf_bin -d ${sofile})
local soname_regexp='soname: \[([[:alnum:]\.]+)\]' local soname_regexp='soname: \[([[:alnum:]\.]+)\]'
if [[ $elfoutput =~ $soname_regexp ]]; then if [[ $elfoutput =~ $soname_regexp ]]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment