1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-25 10:06:42 +03:00

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

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33353 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2012-09-09 22:37:32 +00:00
parent 20856122c5
commit 79cadaa2aa

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