summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-02-21 10:24:24 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-02-21 10:25:26 (GMT)
commit2d130896a05ef14f2ef53ed472c6926a85cc5399 (patch)
treea015ff15bab3f54e97f871dbc45602d6f6006378 /Source/cmMakefile.cxx
parentf19692342ba41ddb2638e118e2864bceca77af59 (diff)
downloadCMake-2d130896a05ef14f2ef53ed472c6926a85cc5399.zip
CMake-2d130896a05ef14f2ef53ed472c6926a85cc5399.tar.gz
CMake-2d130896a05ef14f2ef53ed472c6926a85cc5399.tar.bz2
cmMakefile: Fix list of macros generation.
It was broken by commit 7ee56f03 (Convert loops into the commonly used pattern., 2015-01-17).
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index ac5fec9..ab0d60a 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 = ";";
}
}