Skip to content

Commit

Permalink
Fix Binary package name for Apple Clang
Browse files Browse the repository at this point in the history
  • Loading branch information
peremato committed Nov 7, 2016
1 parent c2c35e8 commit e984f21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/modules/RootCPack.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ if(MSVC)
else()
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
set(COMPILER_NAME_VERSION "-gcc${CXX_MAJOR}.${CXX_MINOR}")
elseif("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
elseif("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")
set(COMPILER_NAME_VERSION "-clang${CXX_MAJOR}${CXX_MINOR}")
endif()
endif()
Expand Down

0 comments on commit e984f21

Please sign in to comment.