diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2018-09-11 19:59:03 -0400 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2018-09-11 19:59:03 -0400 | 
| commit | aaf45f0f63a1c79393e6316e04f78476d2a2af6e (patch) | |
| tree | 3fce32ffb6c71f8fa895c834b9ec9c43596d0449 /indra/newview | |
| parent | e3d16dcb70da26c7952b45252b74716b1a632b97 (diff) | |
DRTVWR-474, MAINT-9047: Set viewer name in Info.plist, not launcher.
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/CMakeLists.txt | 8 | ||||
| -rw-r--r-- | indra/newview/Info-SecondLife.plist | 2 | 
2 files changed, 2 insertions, 8 deletions
| diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index 2fc722d4c3..212677717e 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -2056,13 +2056,7 @@ endif (LINUX)  if (DARWIN)    # These all get set with PROPERTIES    set(product "Second Life") -  # this is the setting for the Python wrapper, see SL-322 and WRAPPER line in Info-SecondLife.plist -  if (PACKAGE) -      set(MACOSX_WRAPPER_EXECUTABLE_NAME "SL_Launcher") -  else (PACKAGE) -      # force the name of the actual executable to allow running it within Xcode for debugging -      set(MACOSX_WRAPPER_EXECUTABLE_NAME "../Resources/Second Life Viewer.app/Contents/MacOS/Second Life") -  endif (PACKAGE) +  set(MACOSX_EXECUTABLE_NAME "Second Life")    set(MACOSX_BUNDLE_INFO_STRING "Second Life Viewer")    set(MACOSX_BUNDLE_ICON_FILE "secondlife.icns")    set(MACOSX_BUNDLE_GUI_IDENTIFIER "com.secondlife.indra.viewer") diff --git a/indra/newview/Info-SecondLife.plist b/indra/newview/Info-SecondLife.plist index af4cf26ac6..31b4201f47 100644 --- a/indra/newview/Info-SecondLife.plist +++ b/indra/newview/Info-SecondLife.plist @@ -5,7 +5,7 @@  	<key>CFBundleDevelopmentRegion</key>  	<string>English</string>  	<key>CFBundleExecutable</key> -	<string>${MACOSX_WRAPPER_EXECUTABLE_NAME}</string> +	<string>${MACOSX_EXECUTABLE_NAME}</string>  	<key>CFBundleGetInfoString</key>  	<string>${MACOSX_BUNDLE_INFO_STRING}</string>  	<key>CFBundleIconFile</key> | 
