diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-02-28 20:30:40 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-02-28 20:30:40 (GMT) |
commit | a65da51919628d673de1135c5b4dcd72dcd0a809 (patch) | |
tree | 1c9d788d8f81be3d35f0e69e36cac283f6b35cca | |
parent | b7ef8149e8456a9c57e20da5cf43f7b8162dc8ee (diff) | |
download | CMake-a65da51919628d673de1135c5b4dcd72dcd0a809.zip CMake-a65da51919628d673de1135c5b4dcd72dcd0a809.tar.gz CMake-a65da51919628d673de1135c5b4dcd72dcd0a809.tar.bz2 |
fix typeo
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index aea0c8a..93c7cf2 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -649,7 +649,7 @@ cmGlobalXCodeGenerator::AddCommandsToBuildPhase(cmXCodeObject* buildphase, std::string cdir = m_CurrentMakefile->GetHomeOutputDirectory(); cdir = this->ConvertToRelativeForMake(cdir.c_str()); std::string makecmd = "make -C "; - makecmd += cdir;? + makecmd += cdir; makecmd += " -f "; makecmd += this->ConvertToRelativeForMake(m_CurrentReRunCMakeMakefile.c_str()); |