diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-02-24 01:41:03 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-02-24 01:41:03 (GMT) |
commit | 7b9f3389c341aa31ac71b3585df33cf84507c457 (patch) | |
tree | 1d66b3c451168622ba3a6b59712dd695d847799f /Source | |
parent | f30e7608484d48ec9a3f3073f4b7a351a44d90a9 (diff) | |
download | CMake-7b9f3389c341aa31ac71b3585df33cf84507c457.zip CMake-7b9f3389c341aa31ac71b3585df33cf84507c457.tar.gz CMake-7b9f3389c341aa31ac71b3585df33cf84507c457.tar.bz2 |
ENH: remove output path stuff
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 5 |
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, |