fix library bundling when host libraries reside in /lib/tls/ or similar

SVN-Revision: 33353
This commit is contained in:
Jo-Philipp Wich 2012-09-09 22:37:32 +00:00
parent caa66bd150
commit c70e919ae8
1 changed files with 1 additions and 5 deletions

View File

@ -74,16 +74,12 @@ for BIN in "$@"; do
*) echo " * lib: ${token##*/}" ;;
esac
dest="$DIR/bundled/lib/${token#*/lib*/}"
dest="$DIR/bundled/lib/${token##*/}"
ddir="${dest%/*}"
[ -f "$token" -a ! -f "$dest" ] && {
_md "$ddir"
_cp "$token" "$dest"
case "$token" in */tls/*.so*)
_cp "${token%/tls/*}/${token##*/}" "$DIR/bundled/lib/${token##*/}"
;; esac
}
;; esac
done