diff options
-rw-r--r-- | backends.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/backends.py b/backends.py index 2ea34a1..b66c80e 100644 --- a/backends.py +++ b/backends.py @@ -631,7 +631,8 @@ class NinjaBackend(Backend): if compiler.get_id() == 'msvc': deps = ' deps = msvc\n' else: - deps = ' depfile = $DEPFILE\n' + deps = ' deps = gcc\n' + deps += ' depfile = $DEPFILE\n' outfile.write(rule) outfile.write(command) outfile.write(deps) @@ -658,7 +659,8 @@ class NinjaBackend(Backend): if compiler.get_id() == 'msvc': deps = ' deps = msvc\n' else: - deps = ' depfile = $DEPFILE\n' + deps = ' deps = gcc\n' + deps += ' depfile = $DEPFILE\n' outfile.write(rule) outfile.write(command) outfile.write(deps) |