aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/msetup.py
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2020-01-06 12:11:19 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2020-01-28 21:18:25 +0200
commit668610c0d2b0f3a66d96022eb57afe5b09c3a2b7 (patch)
treeb35d68d125f7ae9b9df7bfc122236a4c922511f5 /mesonbuild/msetup.py
parent3f8d6af9c2110bc1b3c94dd7b638d5b7eb1208c0 (diff)
downloadmeson-668610c0d2b0f3a66d96022eb57afe5b09c3a2b7.zip
meson-668610c0d2b0f3a66d96022eb57afe5b09c3a2b7.tar.gz
meson-668610c0d2b0f3a66d96022eb57afe5b09c3a2b7.tar.bz2
backend: refactor: set self.interpreter in the constructor
Diffstat (limited to 'mesonbuild/msetup.py')
-rw-r--r--mesonbuild/msetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/msetup.py b/mesonbuild/msetup.py
index d8b79b2..ad9c92f 100644
--- a/mesonbuild/msetup.py
+++ b/mesonbuild/msetup.py
@@ -212,7 +212,7 @@ class MesonApp:
fname = os.path.join(self.build_dir, 'meson-private', fname)
profile.runctx('intr.backend.generate(intr)', globals(), locals(), filename=fname)
else:
- intr.backend.generate(intr)
+ intr.backend.generate()
build.save(b, dumpfile)
if env.first_invocation:
coredata.write_cmd_line_file(self.build_dir, self.options)