diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-02-21 10:24:24 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-02-21 10:25:26 (GMT) |
commit | 2d130896a05ef14f2ef53ed472c6926a85cc5399 (patch) | |
tree | a015ff15bab3f54e97f871dbc45602d6f6006378 | |
parent | f19692342ba41ddb2638e118e2864bceca77af59 (diff) | |
download | CMake-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).
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
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 = ";"; } } |