ERR: Renamed CustomCommands to BuildRules to match change in cmSourceGroup.

This commit is contained in:
Brad King 2001-04-27 14:57:48 -04:00
parent 244892bc3b
commit 13143f51d2
1 changed files with 4 additions and 5 deletions

View File

@ -464,9 +464,8 @@ void cmUnixMakefileGenerator::OutputCustomRules(std::ostream& fout)
for(std::vector<cmSourceGroup>::const_iterator sg =
sourceGroups.begin(); sg != sourceGroups.end(); ++sg)
{
const cmSourceGroup::CustomCommands& customCommands =
sg->GetCustomCommands();
if(customCommands.empty())
const cmSourceGroup::BuildRules& buildRules = sg->GetBuildRules();
if(buildRules.empty())
{ continue; }
std::string name = sg->GetName();
@ -476,8 +475,8 @@ void cmUnixMakefileGenerator::OutputCustomRules(std::ostream& fout)
}
// Loop through each source in the source group.
for(cmSourceGroup::CustomCommands::const_iterator cc =
customCommands.begin(); cc != customCommands.end(); ++ cc)
for(cmSourceGroup::BuildRules::const_iterator cc =
buildRules.begin(); cc != buildRules.end(); ++ cc)
{
std::string source = cc->first;
const cmSourceGroup::Commands& commands = cc->second;