summaryrefslogtreecommitdiffstats
path: root/Source/cmSystemTools.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-10-25 17:16:05 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-10-25 17:16:05 (GMT)
commit626be7884ad0261b0e4ca52fd58a0c8d79a86ae6 (patch)
treeb4a25cdcfdb469bd27f2e6b203f723076df68918 /Source/cmSystemTools.h
parenta3798b2cbf88fdbda1cb010388bc98f394a18945 (diff)
downloadCMake-626be7884ad0261b0e4ca52fd58a0c8d79a86ae6.zip
CMake-626be7884ad0261b0e4ca52fd58a0c8d79a86ae6.tar.gz
CMake-626be7884ad0261b0e4ca52fd58a0c8d79a86ae6.tar.bz2
FIX: go back to not trying to handle spaces in the path for run single command and comment it so that people know to call the right thing
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r--Source/cmSystemTools.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h
index a064a31..cecd065 100644
--- a/Source/cmSystemTools.h
+++ b/Source/cmSystemTools.h
@@ -188,6 +188,11 @@ public:
* exit code will be stored. If the retVal is not specified and
* the program exits with a code other than 0, then the this
* function will return false.
+ *
+ * If the command has spaces in the path the caller MUST call
+ * cmSystemTools::ConvertToRunCommandPath on the command before passing
+ * it into this function or it will not work. The command must be correctly
+ * escaped for this to with spaces.
*/
static bool RunSingleCommand(const char* command, std::string* output = 0,
int* retVal = 0, const char* dir = 0, bool verbose = true, double timeout = 0.0);