aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/msetup.py
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2020-02-01 18:12:42 +0100
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2020-02-12 04:00:10 +0530
commit66bf339e330deccb61309947f95b88b807e24da2 (patch)
tree3968ec1221c5f21466ee744abdf0dfee43a90870 /mesonbuild/msetup.py
parentfbf5c8677bd6d2ff3e872d128eb92a29f4a0df23 (diff)
downloadmeson-66bf339e330deccb61309947f95b88b807e24da2.zip
meson-66bf339e330deccb61309947f95b88b807e24da2.tar.gz
meson-66bf339e330deccb61309947f95b88b807e24da2.tar.bz2
meson: unbreak --profile-self
This broke in 668610c0d2b0f3a66d96022eb57afe5b09c3a2b7.
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 ad9c92f..a2b5164 100644
--- a/mesonbuild/msetup.py
+++ b/mesonbuild/msetup.py
@@ -210,7 +210,7 @@ class MesonApp:
if self.options.profile:
fname = 'profile-{}-backend.log'.format(intr.backend.name)
fname = os.path.join(self.build_dir, 'meson-private', fname)
- profile.runctx('intr.backend.generate(intr)', globals(), locals(), filename=fname)
+ profile.runctx('intr.backend.generate()', globals(), locals(), filename=fname)
else:
intr.backend.generate()
build.save(b, dumpfile)