diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-02-21 10:25:47 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-02-21 10:25:47 (GMT) |
commit | c021f59c1f2f3d892b621a9ba163b069f2a2f0a9 (patch) | |
tree | aa49a9598baf779c7e5d8cb9dbc0f070e44ca0f8 /Source/cmGetCMakePropertyCommand.cxx | |
parent | 2d130896a05ef14f2ef53ed472c6926a85cc5399 (diff) | |
download | CMake-c021f59c1f2f3d892b621a9ba163b069f2a2f0a9.zip CMake-c021f59c1f2f3d892b621a9ba163b069f2a2f0a9.tar.gz CMake-c021f59c1f2f3d892b621a9ba163b069f2a2f0a9.tar.bz2 |
cmMakefile: Store macro list in a vector not in a map.
The signature was computed (incorrectly) and stored as the map
value, but never used. Remove it now.
Diffstat (limited to 'Source/cmGetCMakePropertyCommand.cxx')
-rw-r--r-- | Source/cmGetCMakePropertyCommand.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGetCMakePropertyCommand.cxx b/Source/cmGetCMakePropertyCommand.cxx index 84c00ba..fd18596 100644 --- a/Source/cmGetCMakePropertyCommand.cxx +++ b/Source/cmGetCMakePropertyCommand.cxx @@ -39,6 +39,7 @@ bool cmGetCMakePropertyCommand } else if ( args[1] == "MACROS" ) { + output.clear(); this->Makefile->GetListOfMacros(output); } else if ( args[1] == "COMPONENTS" ) |