mirror of
https://github.com/isar/libmdbx.git
synced 2025-01-30 22:47:16 +08:00
mdbx-cmake: add missed "--match=v[0-9]*"
to git describe
.
This commit is contained in:
parent
18789654fc
commit
ec0379ad93
@ -75,13 +75,13 @@ macro(fetch_version name source_root_directory parent_scope)
|
|||||||
set(${name}_GIT_REVISION 0)
|
set(${name}_GIT_REVISION 0)
|
||||||
set(${name}_GIT_VERSION "")
|
set(${name}_GIT_VERSION "")
|
||||||
if(GIT AND EXISTS "${source_root_directory}/.git")
|
if(GIT AND EXISTS "${source_root_directory}/.git")
|
||||||
execute_process(COMMAND ${GIT} describe --tags --long --dirty=-dirty
|
execute_process(COMMAND ${GIT} describe --tags --long --dirty=-dirty "--match=v[0-9]*"
|
||||||
OUTPUT_VARIABLE ${name}_GIT_DESCRIBE
|
OUTPUT_VARIABLE ${name}_GIT_DESCRIBE
|
||||||
OUTPUT_STRIP_TRAILING_WHITESPACE
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||||
WORKING_DIRECTORY ${source_root_directory}
|
WORKING_DIRECTORY ${source_root_directory}
|
||||||
RESULT_VARIABLE rc)
|
RESULT_VARIABLE rc)
|
||||||
if(rc OR "${name}_GIT_DESCRIBE" STREQUAL "")
|
if(rc OR "${name}_GIT_DESCRIBE" STREQUAL "")
|
||||||
message(FATAL_ERROR "Please fetch tags and/or install latest version of git ('describe --tags --long --dirty' failed)")
|
message(FATAL_ERROR "Please fetch tags and/or install latest version of git ('describe --tags --long --dirty --match=v[0-9]*' failed)")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
execute_process(COMMAND ${GIT} show --no-patch --format=%cI HEAD
|
execute_process(COMMAND ${GIT} show --no-patch --format=%cI HEAD
|
||||||
|
Loading…
x
Reference in New Issue
Block a user