mconf: Don't change the type of coredata.deps

Which is an OrderedDict, but mconf changes to a plain dict. This will
work fine with Python 3.7+, but not with 3.5 and 3.6
pull/5276/head
Dylan Baker 6 years ago
parent 0b66a106e3
commit d941ca1b19
  1. 2
      mesonbuild/mconf.py

@ -63,7 +63,7 @@ class Conf:
raise ConfException('Directory {} is neither a Meson build directory nor a project source directory.'.format(build_dir))
def clear_cache(self):
self.coredata.deps = {}
self.coredata.deps.clear()
def set_options(self, options):
self.coredata.set_options(options)

Loading…
Cancel
Save