aboutsummaryrefslogtreecommitdiff
path: root/backends.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-02-24 00:20:39 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2013-02-24 00:20:39 +0200
commit7371ad676edd6711fd5dcff7b8de037c46763626 (patch)
treeb7c527b420cef26a7dbd6be1ecfd22c619771696 /backends.py
parent7abe15a7baf6065b10a121b10f6d9edda6ed8280 (diff)
downloadmeson-7371ad676edd6711fd5dcff7b8de037c46763626.zip
meson-7371ad676edd6711fd5dcff7b8de037c46763626.tar.gz
meson-7371ad676edd6711fd5dcff7b8de037c46763626.tar.bz2
Renamed generator command line option to backend.
Diffstat (limited to 'backends.py')
-rwxr-xr-xbackends.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends.py b/backends.py
index adce252..fcc2dff 100755
--- a/backends.py
+++ b/backends.py
@@ -301,7 +301,7 @@ class NinjaBackend(Backend):
c = (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' -G ninja\n" % c)
+ outfile.write(" command = '%s' '%s' '%s' --backend ninja\n" % c)
outfile.write(' description = Regenerating build files\n')
outfile.write(' generator = 1\n\n')