diff options
author | Rainer Hochecker <fernetmenta@online.de> | 2015-01-28 07:48:35 +0100 |
---|---|---|
committer | Rainer Hochecker <fernetmenta@online.de> | 2015-01-30 11:56:44 +0100 |
commit | 04e2b57d6badb32070c60038c3dce641a0d2108f (patch) | |
tree | 4d2e2977c9ce646f08ec7e33760b8f27fb88b5ce /lib/librtmp | |
parent | 69eed0b5f1609d2e2b4ef786b2c81498f77d7f34 (diff) |
[OSX] - drop unneeded script for librtmp
Diffstat (limited to 'lib/librtmp')
-rwxr-xr-x | lib/librtmp/darwin_package_librtmp.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/librtmp/darwin_package_librtmp.sh b/lib/librtmp/darwin_package_librtmp.sh deleted file mode 100755 index 0d39403b86..0000000000 --- a/lib/librtmp/darwin_package_librtmp.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh - -SRC_LIB_RTMP="/opt/local/lib/librtmp.so.0" -if [ -e ./system ]; then - DST_LIB_RTMP="./system/librtmp.so" -else - DST_LIB_RTMP="../../system/librtmp.so" -fi - -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 -fi |