[scripts] fix library bundling when host libraries reside in /lib/tls/ or similar
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 9 Sep 2012 22:37:32 +0000 (22:37 +0000)
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
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

index 34cd08e..08b52b9 100755 (executable)
@@ -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