diff options
author | Peter Kuemmel <syntheticpp@gmx.net> | 2012-06-10 19:27:25 (GMT) |
---|---|---|
committer | Peter Kuemmel <syntheticpp@gmx.net> | 2012-06-10 19:27:25 (GMT) |
commit | 4db9dd89df2cc21747c65383b197efb9ca5cba4d (patch) | |
tree | 9a173670ecadf3aab5cfd3cbdef8df5dae40b4df /Source | |
parent | ba8d0db217399dede6d897c928b4dbf52e7e141b (diff) | |
download | CMake-4db9dd89df2cc21747c65383b197efb9ca5cba4d.zip CMake-4db9dd89df2cc21747c65383b197efb9ca5cba4d.tar.gz CMake-4db9dd89df2cc21747c65383b197efb9ca5cba4d.tar.bz2 |
Ninja: use slahes in .d files
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmcldeps.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmcldeps.cxx b/Source/cmcldeps.cxx index 9aa94d3..ac1c49a7 100644 --- a/Source/cmcldeps.cxx +++ b/Source/cmcldeps.cxx @@ -576,7 +576,7 @@ static void outputDepFile(const string& dfile, const string& objfile, for (vector<string>::iterator i(incs.begin()); i != incs.end(); ++i) { tmp = *i; - doEscape(tmp, "\\", "\\\\"); + doEscape(tmp, "\\", "/"); doEscape(tmp, " ", "\\ "); //doEscape(tmp, "(", "("); // TODO ninja cant read ( and ) //doEscape(tmp, ")", ")"); |