summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2007-10-12 15:43:50 (GMT)
committerDavid Cole <david.cole@kitware.com>2007-10-12 15:43:50 (GMT)
commit2458b07464fad0283edc74daf6c75fd2380e6c62 (patch)
tree4196af072f39a980a0c00e8f84c40683d36a6643
parentb2ac4754a6444882efb40bdd91de613ba874d2ba (diff)
downloadCMake-2458b07464fad0283edc74daf6c75fd2380e6c62.zip
CMake-2458b07464fad0283edc74daf6c75fd2380e6c62.tar.gz
CMake-2458b07464fad0283edc74daf6c75fd2380e6c62.tar.bz2
BUG: Fix the dashboards! Put it back the way it was so it always creates the target directory at configure time. Figure out how to avoid it for the framework case on the Mac/Xcode later...
-rw-r--r--Source/cmTarget.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index ba73615..186e361 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -1324,7 +1324,7 @@ const char* cmTarget::NormalGetDirectory(const char* config, bool implib)
if(config && *config)
{
// Do not create the directory when config is given:
- this->Directory = this->GetAndCreateOutputDir(implib, false);
+ this->Directory = this->GetAndCreateOutputDir(implib, true);
// Add the configuration's subdirectory.
this->Makefile->GetLocalGenerator()->GetGlobalGenerator()->
AppendDirectoryForConfig("/", config, "", this->Directory);