diff options
| author | Brad Kittenbrink <brad@lindenlab.com> | 2021-11-04 14:35:12 -0700 | 
|---|---|---|
| committer | Brad Kittenbrink <brad@lindenlab.com> | 2021-11-04 14:35:12 -0700 | 
| commit | 0a7a367088232ed175d4a41aad83363536f205a3 (patch) | |
| tree | e6fe8aa2ebadbc9952dc79e5edb3fd1487ed14d0 /indra/newview | |
| parent | a37a36c40886ab8435da6c5b5dbe7bdb47803484 (diff) | |
SL-16299 fix warning about CFBundleIdentifier not matching PRODUCT_BUNDLE_IDENTIFIER
Diffstat (limited to 'indra/newview')
| -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> | 
