diff --git a/autobuild.xml b/autobuild.xml
index 66e5c1c9f10..91ab31a293c 100644
--- a/autobuild.xml
+++ b/autobuild.xml
@@ -26,11 +26,11 @@
archive
name
darwin64
@@ -40,11 +40,11 @@
archive
name
linux64
@@ -54,11 +54,11 @@
archive
name
windows64
@@ -2084,11 +2084,11 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors
archive
name
linux64
diff --git a/indra/cmake/Copy3rdPartyLibs.cmake b/indra/cmake/Copy3rdPartyLibs.cmake
index bae3dc5d94a..a52e17ac8e9 100644
--- a/indra/cmake/Copy3rdPartyLibs.cmake
+++ b/indra/cmake/Copy3rdPartyLibs.cmake
@@ -171,7 +171,6 @@ elseif(DARWIN)
set(release_files
libndofdev.dylib
libSDL2.dylib
- libSDL2-2.0.dylib
)
if(LLCOMMON_LINK_SHARED)
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index 8daf42b6162..5d5bfbe589e 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -936,7 +936,7 @@ def construct(self):
with self.prefix(src=relpkgdir, dst=""):
self.path("libndofdev.dylib")
- self.path("libSDL2-*.dylib")
+ self.path("libSDL2*.dylib")
with self.prefix(src_dst="cursors_mac"):
self.path("*.tif")
@@ -1038,7 +1038,7 @@ def path_optional(src, dst):
# SDL2
for libfile in (
- 'libSDL2-2.0.dylib',
+ 'libSDL2.dylib',
):
dylibs += path_optional(os.path.join(relpkgdir, libfile), libfile)