diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-09-20 19:08:30 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-09-20 19:08:30 (GMT) |
commit | baa28efd107a3efa821034a64a1c737d3c58ad89 (patch) | |
tree | 37ea066736ad3ccf45c83e39894526bc817e1e71 /Source/cmMakeDirectoryCommand.cxx | |
parent | b9d56e8497b26485d6ea56fa5b781f24260f2038 (diff) | |
download | CMake-baa28efd107a3efa821034a64a1c737d3c58ad89.zip CMake-baa28efd107a3efa821034a64a1c737d3c58ad89.tar.gz CMake-baa28efd107a3efa821034a64a1c737d3c58ad89.tar.bz2 |
ENH: change InitialPass to take a const reference to the argument string, to avoid changes to the file cache
Diffstat (limited to 'Source/cmMakeDirectoryCommand.cxx')
-rw-r--r-- | Source/cmMakeDirectoryCommand.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmMakeDirectoryCommand.cxx b/Source/cmMakeDirectoryCommand.cxx index 22dd4af..aac1a11 100644 --- a/Source/cmMakeDirectoryCommand.cxx +++ b/Source/cmMakeDirectoryCommand.cxx @@ -42,15 +42,16 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "cmDirectory.h" // cmMakeDirectoryCommand -bool cmMakeDirectoryCommand::InitialPass(std::vector<std::string>& args) +bool cmMakeDirectoryCommand::InitialPass(std::vector<std::string> const& args) { if(args.size() < 1 ) { this->SetError("called with incorrect number of arguments"); return false; } - m_Makefile->ExpandVariablesInString(args[0]); - cmSystemTools::MakeDirectory(args[0].c_str()); + std::string arg = args[0]; + m_Makefile->ExpandVariablesInString(arg); + cmSystemTools::MakeDirectory(arg.c_str()); return true; } |