diff options
| -rw-r--r-- | indra/newview/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | indra/newview/Info-SecondLife.plist | 2 | 
2 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index 68b5969ff1..1969c498f0 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -2183,8 +2183,8 @@ if (DARWIN)      # SIGH, as of 2018-05-24 (cmake 3.11.1) the INSTALL_RPATH property simply      # does not work. Try this:      LINK_FLAGS "-rpath @loader_path/../Frameworks" -    MACOSX_BUNDLE_INFO_PLIST -    "${CMAKE_CURRENT_SOURCE_DIR}/Info-SecondLife.plist" +    MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/Info-SecondLife.plist" +    XCODE_ATTRIBUTE_PRODUCT_BUNDLE_IDENTIFIER "${MACOSX_BUNDLE_GUI_IDENTIFIER}"      )    set(VIEWER_APP_BUNDLE "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${product}.app") diff --git a/indra/newview/Info-SecondLife.plist b/indra/newview/Info-SecondLife.plist index cfe9d991c5..09b0e1ec1b 100644 --- a/indra/newview/Info-SecondLife.plist +++ b/indra/newview/Info-SecondLife.plist @@ -11,7 +11,7 @@  	<key>CFBundleIconFile</key>  	<string>${MACOSX_BUNDLE_ICON_FILE}</string>  	<key>CFBundleIdentifier</key> -	<string>${MACOSX_BUNDLE_GUI_IDENTIFIER}</string> +	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>  	<key>CFBundleInfoDictionaryVersion</key>  	<string>6.0</string>  	<key>CFBundleLongVersionString</key>  | 
