Skip to content
Snippets Groups Projects
Commit fd731723 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

Correct test <10.5

parent 11531d0b
No related branches found
No related tags found
1 merge request!14CI Mac / fixing release 1.19
Pipeline #33619 failed
...@@ -13,8 +13,8 @@ execute_process(COMMAND sw_vers "-productVersion" ...@@ -13,8 +13,8 @@ execute_process(COMMAND sw_vers "-productVersion"
OUTPUT_VARIABLE MACOSX_MINOR OUTPUT_STRIP_TRAILING_WHITESPACE) OUTPUT_VARIABLE MACOSX_MINOR OUTPUT_STRIP_TRAILING_WHITESPACE)
message(STATUS "Found a Mac OS X System ${MACOSX_VERSION}, minor ${MACOSX_MINOR}") message(STATUS "Found a Mac OS X System ${MACOSX_VERSION}, minor ${MACOSX_MINOR}")
if(NOT ${MACOSX_MINOR} GREATER 4) if(MACOSX_VERSION EQ 10 AND MACOSX_MINOR LESS 5)
message(FATAL_ERROR "Found a MacOS X minor <= 4, which is unsupported") message(FATAL_ERROR "Found a MacOS X < 10.5, which is unsupported")
endif() endif()
#TODO: check haveconfig and rpath -> set rpath true #TODO: check haveconfig and rpath -> set rpath true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment