summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2009-02-19 16:51:24 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2009-02-19 16:51:24 (GMT)
commit756cb547f3c9462ce4c2276160a73cc174bcd2b0 (patch)
treec50fe68c87a0a14193a490ec7ab507ebeabbb4bd /Source
parent6e87aa49e677bcfa87ed86e4b3a7b1c8d9ce4814 (diff)
downloadCMake-756cb547f3c9462ce4c2276160a73cc174bcd2b0.zip
CMake-756cb547f3c9462ce4c2276160a73cc174bcd2b0.tar.gz
CMake-756cb547f3c9462ce4c2276160a73cc174bcd2b0.tar.bz2
BUG: fix xcode depend issue and add a test for it
Diffstat (limited to 'Source')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index f110c20..db1d78f 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -2706,7 +2706,7 @@ cmGlobalXCodeGenerator::CreateXCodeDependHackTarget(
universal += ".build/";
universal += configName;
universal += "/";
- universal += t->GetName();
+ universal += t->GetFullName(configName);
universal += ".build/Objects-normal/";
for( std::vector<std::string>::iterator arch =
this->Architectures.begin();