cmMakefile: Fix list of macros generation.

It was broken by commit 7ee56f03 (Convert loops into the commonly
used pattern., 2015-01-17).
This commit is contained in:
Stephen Kelly 2015-02-21 11:24:24 +01:00
parent f19692342b
commit 2d130896a0
1 changed files with 1 additions and 1 deletions

View File

@ -3757,7 +3757,7 @@ void cmMakefile::GetListOfMacros(std::string& macros) const
{
macros += sep;
macros += it->first;
sep = "";
sep = ";";
}
}