summaryrefslogtreecommitdiffstats
path: root/Source/cmCableClassSetCommand.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmCableClassSetCommand.cxx')
-rw-r--r--Source/cmCableClassSetCommand.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmCableClassSetCommand.cxx b/Source/cmCableClassSetCommand.cxx
index ae6ddcf..fca7eba 100644
--- a/Source/cmCableClassSetCommand.cxx
+++ b/Source/cmCableClassSetCommand.cxx
@@ -19,13 +19,15 @@
#include "cmTarget.h"
// cmCableClassSetCommand
-bool cmCableClassSetCommand::InitialPass(std::vector<std::string> const& args)
+bool cmCableClassSetCommand::InitialPass(std::vector<std::string> const& argsIn)
{
- if(args.size() < 2)
+ if(argsIn.size() < 2)
{
this->SetError("called with incorrect number of arguments");
return false;
}
+ std::vector<std::string> args;
+ cmSystemTools::ExpandListArguments(argsIn, args);
// The first argument is the name of the set.
std::vector<std::string>::const_iterator arg = args.begin();