diff options
author | Brad King <brad.king@kitware.com> | 2008-01-25 13:11:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-25 13:11:04 (GMT) |
commit | 386a6ebf251f45123ca542bef8f4050fd5f37522 (patch) | |
tree | 1d05973638cdb478f7412e2b8b44e93ced6888d3 /Source | |
parent | 817d17e8224703c7ae2b9d89d0de1153fad2fbbc (diff) | |
download | CMake-386a6ebf251f45123ca542bef8f4050fd5f37522.zip CMake-386a6ebf251f45123ca542bef8f4050fd5f37522.tar.gz CMake-386a6ebf251f45123ca542bef8f4050fd5f37522.tar.bz2 |
COMP: Need to return a value from fake MD5 method under bootstrap.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmSystemTools.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index aba375d..002dc0b 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -1142,6 +1142,7 @@ std::string cmSystemTools::ComputeStringMD5(const char* input) #else (void)input; cmSystemTools::Message("md5sum not supported in bootstrapping mode","Error"); + return ""; #endif } |