mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-19 10:13:13 +00:00
[CMake] Minor fix to regex in r279152
The third version component is optional in Xcode's version spew, so we need to make it optional in the regex. llvm-svn: 279153
This commit is contained in:
parent
ab28de8c4f
commit
03ce105b8b
@ -49,7 +49,7 @@ if(NOT XCODE_VERSION)
|
||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||
ERROR_FILE /dev/null
|
||||
)
|
||||
string(REGEX MATCH "Xcode ([0-9][.][0-9][.][0-9])" version_match ${xcodebuild_version})
|
||||
string(REGEX MATCH "Xcode ([0-9]([.][0-9])+)" version_match ${xcodebuild_version})
|
||||
if(version_match)
|
||||
message(STATUS "Identified Xcode Version: ${CMAKE_MATCH_1}")
|
||||
set(XCODE_VERSION ${CMAKE_MATCH_1})
|
||||
|
Loading…
x
Reference in New Issue
Block a user