diff options
author | Brad King <brad.king@kitware.com> | 2015-10-15 12:56:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-10-15 13:00:23 (GMT) |
commit | 4cd52dc5511c8c3809b7cb260ac6afa7eec65f2e (patch) | |
tree | 7f3a5c10ea1c99d08ccd2e70d8296be84118b0b3 | |
parent | 679a5d2185b15dcd0ff73f7c1c2d7d527c53de53 (diff) | |
download | CMake-4cd52dc5511c8c3809b7cb260ac6afa7eec65f2e.zip CMake-4cd52dc5511c8c3809b7cb260ac6afa7eec65f2e.tar.gz CMake-4cd52dc5511c8c3809b7cb260ac6afa7eec65f2e.tar.bz2 |
ExternalProject: Fix Git version report in error message (#15791)
Refactoring in commit v3.4.0-rc1~77^2~1 (ExternalProject: Use
GIT_VERSION_STRING instead of custom method, 2015-09-17) forgot
to update the variable name used in an error message.
-rw-r--r-- | Modules/ExternalProject.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/ExternalProject.cmake b/Modules/ExternalProject.cmake index 90ceedf..dda45b9 100644 --- a/Modules/ExternalProject.cmake +++ b/Modules/ExternalProject.cmake @@ -1739,7 +1739,7 @@ function(_ep_add_download_command name) # The git submodule update '--recursive' flag requires git >= v1.6.5 # if(GIT_VERSION_STRING VERSION_LESS 1.6.5) - message(FATAL_ERROR "error: git version 1.6.5 or later required for 'git submodule update --recursive': git_version='${git_version}'") + message(FATAL_ERROR "error: git version 1.6.5 or later required for 'git submodule update --recursive': GIT_VERSION_STRING='${GIT_VERSION_STRING}'") endif() get_property(git_tag TARGET ${name} PROPERTY _EP_GIT_TAG) |