abuild: add option sover-namecheck

So far only openjdk6 needs it and uclibc cannot have it, so we make
it optional.
This commit is contained in:
Natanael Copa 2012-10-02 18:38:32 +00:00
parent b49589e291
commit 1fa61905d1

View File

@ -974,7 +974,10 @@ scan_shared_objects() {
# filter out sonames with version when file does not
# have version
case "$soname" in
*.so.[0-9]*) continue;;
*.so.[0-9]*)
if options_has "sover-namecheck"; then
continue
fi
esac
;;
esac