diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-09-09 22:37:32 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-09-09 22:37:32 +0000 |
commit | c70e919ae87003be253c6fc838603c128e4d0f8f (patch) | |
tree | 6b821022e9dd39c8751c9d679a471bcb92fa3c0a /scripts/bundle-libraries.sh | |
parent | caa66bd150dad2c27adf60deeaed7932453108bc (diff) | |
download | upstream-c70e919ae87003be253c6fc838603c128e4d0f8f.tar.gz upstream-c70e919ae87003be253c6fc838603c128e4d0f8f.tar.bz2 upstream-c70e919ae87003be253c6fc838603c128e4d0f8f.zip |
fix library bundling when host libraries reside in /lib/tls/ or similar
SVN-Revision: 33353
Diffstat (limited to 'scripts/bundle-libraries.sh')
-rwxr-xr-x | scripts/bundle-libraries.sh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/scripts/bundle-libraries.sh b/scripts/bundle-libraries.sh index 34cd08e787..08b52b9906 100755 --- a/scripts/bundle-libraries.sh +++ b/scripts/bundle-libraries.sh @@ -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 |