Browse Source

ERR: RunCommand method needed return in unix.

Brad King 25 years ago
parent
commit
09e9a53bb1
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Source/cmSystemTools.cxx

+ 1 - 0
Source/cmSystemTools.cxx

@@ -602,6 +602,7 @@ bool cmSystemTools::RunCommand(const char* command,
     fgets(buffer, BUFFER_SIZE, cpipe);
     }
   fclose(cpipe);
+  return true;
 #endif
 }