BUG: Always check whether a subdirectory is below the top of the source before computing the binary tree automatically. Even when the source is a relative path it may contain ../ which would allow it to be outside the source tree.

This commit is contained in:
Brad King 2006-06-05 14:38:16 -04:00
parent 7d5bc02c9d
commit df70e3de66

View File

@ -74,6 +74,7 @@ bool cmAddSubDirectoryCommand::InitialPass
// at this point srcPath has the full path to the source directory // at this point srcPath has the full path to the source directory
// now we need to compute the binPath if it was not provided // now we need to compute the binPath if it was not provided
srcPath = cmSystemTools::CollapseFullPath(srcPath.c_str());
// if the argument was provided then use it // if the argument was provided then use it
if (binArg.size()) if (binArg.size())
@ -87,21 +88,13 @@ bool cmAddSubDirectoryCommand::InitialPass
// otherwise compute the binPath from the srcPath // otherwise compute the binPath from the srcPath
else else
{ {
// if the srcArg was relative then we just do the same for the binPath // we try to remove the CurrentDirectory from the srcPath and
if (relativeSource)
{
binPath = std::string(this->Makefile->GetCurrentOutputDirectory()) +
"/" + srcArg;
}
// otherwise we try to remove the CurrentDirectory from the srcPath and
// replace it with the CurrentOutputDirectory. This may not really work // replace it with the CurrentOutputDirectory. This may not really work
// because the source dir they provided may not be "in" the source // because the source dir they provided may not be "in" the source
// tree. This is an error if this happens. // tree. This is an error if this happens.
else
{
// try replacing the home dir with the home output dir // try replacing the home dir with the home output dir
binPath = srcPath; binPath = srcPath;
if (!cmSystemTools::FindLastString(binPath.c_str(), if(!cmSystemTools::FindLastString(binPath.c_str(),
this->Makefile->GetHomeDirectory())) this->Makefile->GetHomeDirectory()))
{ {
this->SetError("A full source directory was specified that is not " this->SetError("A full source directory was specified that is not "
@ -115,7 +108,6 @@ bool cmAddSubDirectoryCommand::InitialPass
this->Makefile->GetHomeDirectory(), this->Makefile->GetHomeDirectory(),
this->Makefile->GetHomeOutputDirectory()); this->Makefile->GetHomeOutputDirectory());
} }
}
// now we have all the arguments // now we have all the arguments
this->Makefile->AddSubDirectory(srcPath.c_str(), binPath.c_str(), this->Makefile->AddSubDirectory(srcPath.c_str(), binPath.c_str(),