Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/macx
diff options
context:
space:
mode:
authorKlemens Nanni <klemens@posteo.de>2022-01-22 11:28:51 +0300
committerKlemens Nanni <klemens@posteo.de>2022-01-22 11:36:52 +0300
commitbceec3dbfe81570b1de7809216d1d5ed8cb4d110 (patch)
tree68ce987ccc5cb9a549f146f0890cd22c99e0064d /macx
parentdb3a280585ae0fb7798f18ba6487644e0b97802d (diff)
MAINT(client): Remove SBCELT leftovers
This is dead code since ``` commit c5644c7d73a247b00fef9db38738e4a00653c8e9 Author: Robert Adam <dev@robert-adam.de> Date: Thu May 7 08:14:09 2020 +0200 3rdparty: Removed sbcelt submodule as it is not used and broken ```
Diffstat (limited to 'macx')
-rwxr-xr-xmacx/scripts/osxdist.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/macx/scripts/osxdist.py b/macx/scripts/osxdist.py
index 4658c4828..432600c38 100755
--- a/macx/scripts/osxdist.py
+++ b/macx/scripts/osxdist.py
@@ -281,7 +281,6 @@ def package_client():
# Do the finishing touches to our Application bundle before release
a = AppBundle(os.path.join(options.binary_dir, 'Mumble.app'), ver)
a.copy_helper('mumble-g15-helper')
- a.copy_helper('sbcelt-helper')
a.copy_codecs()
a.copy_plugins()
a.copy_resources([os.path.join(options.source_dir, 'icons/mumble.icns')])
@@ -302,7 +301,6 @@ def package_client():
os.path.join(options.binary_dir, 'Mumble.app/Contents/Codecs/libcelt0.0.7.0.dylib'),
os.path.join(options.binary_dir, 'Mumble.app/Contents/Codecs/libopus.dylib'),
os.path.join(options.binary_dir, 'Mumble.app/Contents/MacOS/mumble-g15-helper'),
- os.path.join(options.binary_dir, 'Mumble.app/Contents/MacOS/sbcelt-helper'),
)
availableBinaries = [bin for bin in binaries if os.path.exists(bin)]
codesign(availableBinaries)