cmcldeps: append strings as strings

This commit is contained in:
Ben Boeckel
2016-10-13 12:48:24 -04:00
parent 7db671a143
commit 47092d3e80
+1 -1
View File
@@ -205,7 +205,7 @@ static int process(const std::string& srcfilename, const std::string& dfile,
std::vector<std::string> command;
for (std::vector<std::string>::iterator i = args.begin(); i != args.end();
++i) {
command.push_back(i->c_str());
command.push_back(*i);
}
// run the command
int exit_code = 0;