ENH: remove output path stuff

This commit is contained in:
Andy Cedilnik 2005-02-23 20:41:03 -05:00
parent f30e760848
commit 7b9f3389c3
1 changed files with 2 additions and 3 deletions

View File

@ -240,10 +240,9 @@ cmGlobalXCodeGenerator::AddExtraTargets(cmLocalGenerator* root,
cmCustomCommandLine makecommand; cmCustomCommandLine makecommand;
makecommand.push_back("make"); makecommand.push_back("make");
makecommand.push_back("-C"); 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("-f");
makecommand.push_back(this->ConvertToRelativeOutputPath( makecommand.push_back(m_CurrentXCodeHackMakefile.c_str());
m_CurrentXCodeHackMakefile.c_str()));
cmCustomCommandLines commandLines; cmCustomCommandLines commandLines;
commandLines.push_back(makecommand); commandLines.push_back(makecommand);
mf->AddUtilityCommand("XCODE_DEPEND_HELPER", false, no_output, no_depends, mf->AddUtilityCommand("XCODE_DEPEND_HELPER", false, no_output, no_depends,