interpreter: Do not print "method meson"

pull/7491/head
Xavier Claessens 4 years ago
parent 60c2c25d5b
commit 7c3418204f
  1. 6
      mesonbuild/interpreter.py

@ -2914,7 +2914,11 @@ external dependencies (including libraries) must go to "dependencies".''')
mlog.log()
with mlog.nested(subp_name):
stack = ':'.join(self.subproject_stack + [subp_name])
mlog.log('Executing subproject', mlog.bold(stack), 'method', mlog.bold(method), '\n')
m = ['Executing subproject', mlog.bold(stack)]
if method != 'meson':
m += ['method', mlog.bold(method)]
mlog.log(*m,'\n')
try:
if method == 'meson':
return self._do_subproject_meson(subp_name, subdir, default_options, kwargs)

Loading…
Cancel
Save