From 2458b07464fad0283edc74daf6c75fd2380e6c62 Mon Sep 17 00:00:00 2001 From: David Cole Date: Fri, 12 Oct 2007 11:43:50 -0400 Subject: [PATCH] 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... --- Source/cmTarget.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index ba7361558..186e36101 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);