projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
11c0146
)
[scripts] fix library bundling when host libraries reside in /lib/tls/ or similar
author
Jo-Philipp Wich
<jow@openwrt.org>
Sun, 9 Sep 2012 22:37:32 +0000
(22:37 +0000)
committer
Jo-Philipp Wich
<jow@openwrt.org>
Sun, 9 Sep 2012 22:37:32 +0000
(22:37 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33353
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
scripts/bundle-libraries.sh
patch
|
blob
|
history
diff --git
a/scripts/bundle-libraries.sh
b/scripts/bundle-libraries.sh
index
34cd08e
..
08b52b9
100755
(executable)
--- 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