From 09e9a53bb19b85aec9905c10b69ff6184f9b3d64 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 10 May 2001 11:19:15 -0400 Subject: [PATCH] ERR: RunCommand method needed return in unix. --- Source/cmSystemTools.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 89e8016e6..2240424e1 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -602,6 +602,7 @@ bool cmSystemTools::RunCommand(const char* command, fgets(buffer, BUFFER_SIZE, cpipe); } fclose(cpipe); + return true; #endif }