aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authordavilla <davilla@svn>2010-08-03 03:23:46 +0000
committerdavilla <davilla@svn>2010-08-03 03:23:46 +0000
commit2a95d460648daeb909930c8ecfc82faf53c5ba93 (patch)
treec75b0005e10b174f45eb2406a46d2d4f1e63df5d /lib
parentcb9646a0c2ff7ea445c5b1b13e7c13918f12c154 (diff)
[osx] fix librtmp to work with svn system and when packaged in xbmc.app
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@32447 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'lib')
-rwxr-xr-xlib/librtmp/darwin_package_librtmp.sh6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/librtmp/darwin_package_librtmp.sh b/lib/librtmp/darwin_package_librtmp.sh
index d47bbb937d..0d39403b86 100755
--- a/lib/librtmp/darwin_package_librtmp.sh
+++ b/lib/librtmp/darwin_package_librtmp.sh
@@ -11,10 +11,4 @@ if [ -f $SRC_LIB_RTMP ]; then
# copy librtmp into xbmc's system directory, we
# rename it to librtmp.so and skip the symlinking.
cp $SRC_LIB_RTMP $DST_LIB_RTMP
-
- # rename any dependency libs to inside xbmc's app framework
- for a in $(otool -L "$DST_LIB_RTMP" | grep opt | awk ' { print $1 } ') ; do
- echo "Processing $a"
- install_name_tool -change "$a" @executable_path/../Frameworks/$(basename $a) "$DST_LIB_RTMP"
- done
fi