diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-02-20 19:46:33 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-02-20 19:46:33 (GMT) |
commit | 51516613e83f15c31156ad0a503f270c746266e1 (patch) | |
tree | 788642df935ae161fd40761bdbb4c11e0d800e6e /Source/cmake.cxx | |
parent | 413a595d372253ac770496e5ebb9012991705745 (diff) | |
download | CMake-51516613e83f15c31156ad0a503f270c746266e1.zip CMake-51516613e83f15c31156ad0a503f270c746266e1.tar.gz CMake-51516613e83f15c31156ad0a503f270c746266e1.tar.bz2 |
ENH: Ok, when doing cmake -P you should not have to squish filename next to -P, There should be space between
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index c1c2698..9c4f7d9 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -217,7 +217,8 @@ bool cmake::SetCacheArgs(const std::vector<std::string>& args) } else if(arg.find("-P",0) == 0) { - std::string path = arg.substr(strlen("-P")); + i++; + std::string path = args[i]; if ( path.size() == 0 ) { cmSystemTools::Error("No cmake scrpt provided."); |