Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastián Barschkis <sebbas@sebbas.org>2021-03-08 13:55:35 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2021-03-08 13:55:35 +0300
commite9e53ff3a6a4a73efe4777551d0cc552a0ea76d4 (patch)
tree2c5c022b49427528de4c9f92930936a94a8a1663 /build_files
parente12ad2bce0cca84a10915d8da1417b71142432d1 (diff)
Cleanup: Removed duplicate slash in macOS SDK path
Cleanup although it's harmless.
Diffstat (limited to 'build_files')
-rw-r--r--build_files/cmake/platform/platform_apple_xcode.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/cmake/platform/platform_apple_xcode.cmake b/build_files/cmake/platform/platform_apple_xcode.cmake
index 43bdafb8ce2..4d15fee75b7 100644
--- a/build_files/cmake/platform/platform_apple_xcode.cmake
+++ b/build_files/cmake/platform/platform_apple_xcode.cmake
@@ -66,7 +66,7 @@ endif()
if(XCODE_VERSION)
# Construct SDKs path ourselves, because xcode-select path could be ambiguous.
# Both /Applications/Xcode.app/Contents/Developer or /Applications/Xcode.app would be allowed.
- set(XCODE_SDK_DIR ${XCODE_DEVELOPER_DIR}/Platforms/MacOSX.platform//Developer/SDKs)
+ set(XCODE_SDK_DIR ${XCODE_DEVELOPER_DIR}/Platforms/MacOSX.platform/Developer/SDKs)
# Detect SDK version to use
if(NOT DEFINED OSX_SYSTEM)