diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-03-10 01:37:20 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-03-10 01:37:20 +0200 |
commit | 27d39fe6056a1bf8af12a41065bd01cc809ebd83 (patch) | |
tree | d6542cf3764bbb1b244462f3581fae746ab086e0 /backends.py | |
parent | f45645388363372f77e0d63523383e07dcdacd82 (diff) | |
download | meson-27d39fe6056a1bf8af12a41065bd01cc809ebd83.zip meson-27d39fe6056a1bf8af12a41065bd01cc809ebd83.tar.gz meson-27d39fe6056a1bf8af12a41065bd01cc809ebd83.tar.bz2 |
A few fixes.
Diffstat (limited to 'backends.py')
-rwxr-xr-x | backends.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends.py b/backends.py index 5fa6e89..a631f33 100755 --- a/backends.py +++ b/backends.py @@ -386,7 +386,7 @@ class NinjaBackend(Backend): ninja_quote(self.environment.get_build_command()), ninja_quote(self.environment.get_source_dir()), ninja_quote(self.environment.get_build_dir())) - outfile.write(" command = '%s' %s' '%s' '%s' --backend ninja\n" % c) + outfile.write(" command = '%s' '%s' '%s' '%s' --backend ninja\n" % c) outfile.write(' description = Regenerating build files\n') outfile.write(' generator = 1\n\n') |