diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-02-27 21:41:43 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-02-27 21:41:43 (GMT) |
commit | cbf6bae9f4cb1d355fd84673ec4132b0d0185b5a (patch) | |
tree | 45fad0c9b66509f9e0f3c539e0647d7f52976394 /Source/cmake.cxx | |
parent | 73818126f32069337080e7f5ffa727bde48d5ce2 (diff) | |
download | CMake-cbf6bae9f4cb1d355fd84673ec4132b0d0185b5a.zip CMake-cbf6bae9f4cb1d355fd84673ec4132b0d0185b5a.tar.gz CMake-cbf6bae9f4cb1d355fd84673ec4132b0d0185b5a.tar.bz2 |
BUG: fix to naming of results file
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index d549203..3e8e65e 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -2953,7 +2953,7 @@ int cmake::GetSystemInformation(std::vector<std::string>& args) if (args.size() == 1) { resultFile = cwd; - resultFile += "__cmake_systeminformation/results.txt"; + resultFile += "/__cmake_systeminformation/results.txt"; } else { |