summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-07-29 15:25:47 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-07-29 15:25:47 (GMT)
commitee6df5f63be57f4a1801ee3c7e67564fd6dd7f17 (patch)
treeec00e627ec1f181666e41b03b2dbddd94faeda81 /Source
parentdf26171533ec684db28283f185cd2d78d9080356 (diff)
downloadCMake-ee6df5f63be57f4a1801ee3c7e67564fd6dd7f17.zip
CMake-ee6df5f63be57f4a1801ee3c7e67564fd6dd7f17.tar.gz
CMake-ee6df5f63be57f4a1801ee3c7e67564fd6dd7f17.tar.bz2
BUG: Fix dependencies. Looks like all dependencies were missing subdirectory
Diffstat (limited to 'Source')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index b1cd324..abfb8cc 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -3044,7 +3044,9 @@ void cmLocalUnixMakefileGenerator3
{
cmakefileStream << " \"" << (*csIter)->GetFullPath() << "\"\n";
// Get the full path name of the object file.
- std::string obj = this->GetObjectFileName(target, **csIter);
+ std::string obj = m_Makefile->GetStartOutputDirectory();
+ obj += "/";
+ obj += this->GetObjectFileName(target, **csIter);
cmakefileStream << " \"" <<
this->Convert(obj.c_str(),
cmLocalGenerator::FULL).c_str() << "\"\n";