diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-05-12 17:53:21 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-05-12 17:53:21 (GMT) |
commit | daa37f116340fa86c1a511847fe65ad999095fa0 (patch) | |
tree | c7b5e27c5bc3407266dca8ea5c987ff32a81b5a2 /Source/cmSubdirCommand.cxx | |
parent | 2bb24565e5fb9ba99aa3164332a81504a7eb51b0 (diff) | |
download | CMake-daa37f116340fa86c1a511847fe65ad999095fa0.zip CMake-daa37f116340fa86c1a511847fe65ad999095fa0.tar.gz CMake-daa37f116340fa86c1a511847fe65ad999095fa0.tar.bz2 |
STYLE: fix line length
Diffstat (limited to 'Source/cmSubdirCommand.cxx')
-rw-r--r-- | Source/cmSubdirCommand.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmSubdirCommand.cxx b/Source/cmSubdirCommand.cxx index 66d1829..207dfec 100644 --- a/Source/cmSubdirCommand.cxx +++ b/Source/cmSubdirCommand.cxx @@ -43,7 +43,8 @@ bool cmSubdirCommand::InitialPass(std::vector<std::string> const& args) } // if they specified a relative path then compute the full - std::string srcPath = std::string(this->Makefile->GetCurrentDirectory()) + + std::string srcPath = + std::string(this->Makefile->GetCurrentDirectory()) + "/" + i->c_str(); if (cmSystemTools::FileIsDirectory(srcPath.c_str())) { |