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

SVN-Revision: 33353
v19.07.3_mercusys_ac12_duma
Jo-Philipp Wich 12 years ago
parent caa66bd150
commit c70e919ae8

@ -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

Loading…
Cancel
Save