From 386a6ebf251f45123ca542bef8f4050fd5f37522 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 25 Jan 2008 08:11:04 -0500 Subject: [PATCH] COMP: Need to return a value from fake MD5 method under bootstrap. --- Source/cmSystemTools.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index aba375d99..002dc0ba9 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 }