diff options
author | jmarshallnz <jmarshallnz@svn> | 2010-08-04 08:27:30 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2010-08-04 08:27:30 +0000 |
commit | 4a3d29b3b8fb839be587bae3d8680267b378aca7 (patch) | |
tree | d40d5aada864199f59076cbe94442dc2171c9f8d /lib | |
parent | 08a79cdae791dbc46b9a2d48ff71f0e3e14437b3 (diff) |
[osx] fix librtmp to work with svn system and when packaged in xbmc.app
(cherry picked from commit e5f513fd3a70b29098c2bb073350ae62419bbd5c)
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/branches/Dharma@32485 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/librtmp/darwin_package_librtmp.sh | 6 |
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 |