summaryrefslogtreecommitdiffstats
path: root/TOOLS/osxbundle.py
diff options
context:
space:
mode:
Diffstat (limited to 'TOOLS/osxbundle.py')
-rwxr-xr-xTOOLS/osxbundle.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/TOOLS/osxbundle.py b/TOOLS/osxbundle.py
index bf08061c31..bd1ab45a58 100755
--- a/TOOLS/osxbundle.py
+++ b/TOOLS/osxbundle.py
@@ -38,10 +38,6 @@ def apply_plist_template(plist_file, version):
for line in fileinput.input(plist_file, inplace=1):
print(line.rstrip().replace('${VERSION}', version))
-def create_bundle_symlink(binary_name, symlink_name):
- os.symlink(os.path.basename(binary_name),
- os.path.join(target_directory(binary_name), symlink_name))
-
def bundle_version():
if os.path.exists('VERSION'):
x = open('VERSION')
@@ -72,8 +68,6 @@ def main():
copy_bundle(binary_name)
print("> copying binary")
copy_binary(binary_name)
- print("> create bundle symlink")
- create_bundle_symlink(binary_name, "mpv-bundle")
print("> generating Info.plist")
apply_plist_template(target_plist(binary_name), version)