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
diff options
context:
space:
mode:
authorDavide Beatrici <davidebeatrici@gmail.com>2017-03-23 01:26:44 +0300
committerDavide Beatrici <davidebeatrici@gmail.com>2017-03-23 01:26:44 +0300
commita1a1ff103ab8bae9afb2fd5777295863dc114279 (patch)
tree1de1fd7dc88e300de1d09556b860d52e9db6907d /3rdparty
parente414bd3b620215e83e5134d1ed8ee10c918ac6e6 (diff)
3rdparty/opus-build: remove unnecessary shared library handling for macOS
This removes a section of opus-build.pro that sets the proper install name on the Opus shared library. This commit removes it because it is not needed anymore -- we only ever build Opus as a static library on Unix-like systems.
Diffstat (limited to '3rdparty')
-rw-r--r--3rdparty/opus-build/opus-build.pro9
1 files changed, 0 insertions, 9 deletions
diff --git a/3rdparty/opus-build/opus-build.pro b/3rdparty/opus-build/opus-build.pro
index 09e00922b..590df5762 100644
--- a/3rdparty/opus-build/opus-build.pro
+++ b/3rdparty/opus-build/opus-build.pro
@@ -272,13 +272,4 @@ CONFIG(release, debug|release) {
DESTDIR = ../../release
}
-macx:!CONFIG(static) {
- libname.target = libname
- libname.commands = cd ${DESTDIR} && install_name_tool -id `pwd`/${TARGET} ${TARGET}
- libname.depends = ${DESTDIR}${TARGET}
- libname.CONFIG = recursive
- QMAKE_EXTRA_TARGETS *= libname
- ALL_DEPS += libname
-}
-
include(../../qmake/symbols.pri)