diff options
Diffstat (limited to 'Source/cmDSPMakefile.cxx')
-rw-r--r-- | Source/cmDSPMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDSPMakefile.cxx b/Source/cmDSPMakefile.cxx index 7a5f60a..766908b 100644 --- a/Source/cmDSPMakefile.cxx +++ b/Source/cmDSPMakefile.cxx @@ -322,7 +322,7 @@ void cmDSPMakefile::WriteCustomRule(std::ostream& fout, for(std::set<std::string>::const_iterator d = depends.begin(); d != depends.end(); ++d) { - fout << " " << d->c_str(); + fout << " \"" << d->c_str() << "\""; } fout << "\n " << command << "\n\n"; } |