aboutsummaryrefslogtreecommitdiff
path: root/lib/librtmp
diff options
context:
space:
mode:
authorRainer Hochecker <fernetmenta@online.de>2015-01-28 07:48:35 +0100
committerRainer Hochecker <fernetmenta@online.de>2015-01-30 11:56:44 +0100
commit04e2b57d6badb32070c60038c3dce641a0d2108f (patch)
tree4d2e2977c9ce646f08ec7e33760b8f27fb88b5ce /lib/librtmp
parent69eed0b5f1609d2e2b4ef786b2c81498f77d7f34 (diff)
[OSX] - drop unneeded script for librtmp
Diffstat (limited to 'lib/librtmp')
-rwxr-xr-xlib/librtmp/darwin_package_librtmp.sh14
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