summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index fb94fea..e227074 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -240,10 +240,9 @@ cmGlobalXCodeGenerator::AddExtraTargets(cmLocalGenerator* root,
cmCustomCommandLine makecommand;
makecommand.push_back("make");
makecommand.push_back("-C");
- makecommand.push_back(this->ConvertToRelativeOutputPath(dir.c_str()));
+ makecommand.push_back(dir.c_str());
makecommand.push_back("-f");
- makecommand.push_back(this->ConvertToRelativeOutputPath(
- m_CurrentXCodeHackMakefile.c_str()));
+ makecommand.push_back(m_CurrentXCodeHackMakefile.c_str());
cmCustomCommandLines commandLines;
commandLines.push_back(makecommand);
mf->AddUtilityCommand("XCODE_DEPEND_HELPER", false, no_output, no_depends,