diff options
Diffstat (limited to 'host/cmake/Modules')
-rw-r--r-- | host/cmake/Modules/UHDVersion.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/cmake/Modules/UHDVersion.cmake b/host/cmake/Modules/UHDVersion.cmake index 23b970084..1f64339cb 100644 --- a/host/cmake/Modules/UHDVersion.cmake +++ b/host/cmake/Modules/UHDVersion.cmake @@ -43,8 +43,8 @@ IF(GIT_FOUND) ) IF(_git_branch_result EQUAL 0) SET(UHD_GIT_BRANCH ${_git_branch}) - IF(UHD_GIT_BRANCH STREQUAL "maint") - MESSAGE(STATUS "Operating on maint branch (stable).") + IF(UHD_GIT_BRANCH MATCHES "^UHD-") + MESSAGE(STATUS "Operating on release branch (${UHD_GIT_BRANCH}).") SET(UHD_VERSION_DEVEL FALSE) ELSEIF(UHD_GIT_BRANCH STREQUAL "master") MESSAGE(STATUS "Operating on master branch.") |