From 337103828314be9eefa8cafeb1def915ae7072be Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 5 Aug 2004 11:51:49 -0400 Subject: ERR: Replacing hack call to CONFIGURE_FILE command with direct call to m_Makefile->ConfigureFile. --- Source/cmAddExecutableCommand.cxx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Source/cmAddExecutableCommand.cxx b/Source/cmAddExecutableCommand.cxx index 8faabac..6e3e680 100644 --- a/Source/cmAddExecutableCommand.cxx +++ b/Source/cmAddExecutableCommand.cxx @@ -59,8 +59,6 @@ bool cmAddExecutableCommand::InitialPass(std::vector const& args) { tgt->SetProperty("MACOSX_BUNDLE", "ON"); #ifdef __APPLE__ - cmListFileFunction func; - func.m_Name = "CONFIGURE_FILE"; std::string f1 = m_Makefile->GetModulesFile("MacOSXBundleInfo.plist.in"); if ( f1.size() == 0 ) { @@ -80,12 +78,8 @@ bool cmAddExecutableCommand::InitialPass(std::vector const& args) std::string f2 = macdir + "Info.plist"; macdir += "MacOS"; cmSystemTools::MakeDirectory(macdir.c_str()); - - func.m_Arguments.push_back(cmListFileArgument(f1, true)); - func.m_Arguments.push_back(cmListFileArgument(f2, true)); - func.m_Arguments.push_back(cmListFileArgument("IMMEDIATE", true)); m_Makefile->AddDefinition("MACOSX_BUNDLE_EXECUTABLE_NAME", exename.c_str()); - m_Makefile->ExecuteCommand(func); + m_Makefile->ConfigureFile(f1.c_str(), f2.c_str(), false, false, false); #endif } -- cgit v0.12