From 2d130896a05ef14f2ef53ed472c6926a85cc5399 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sat, 21 Feb 2015 11:24:24 +0100 Subject: [PATCH] cmMakefile: Fix list of macros generation. It was broken by commit 7ee56f03 (Convert loops into the commonly used pattern., 2015-01-17). --- Source/cmMakefile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index ac5fec9c3..ab0d60ac3 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -3757,7 +3757,7 @@ void cmMakefile::GetListOfMacros(std::string& macros) const { macros += sep; macros += it->first; - sep = ""; + sep = ";"; } }