pull/2926/head
Jon Turney 7 years ago
parent d8967054d1
commit 0a6cbcce03
  1. 2
      mesonbuild/dependencies/base.py
  2. 2
      mesonbuild/dependencies/misc.py

@ -75,7 +75,7 @@ class Dependency:
raise DependencyException('method {!r} is invalid'.format(method))
method = DependencyMethods(method)
# This sets per-too config methods which are deprecated to to the new
# This sets per-tool config methods which are deprecated to to the new
# generic CONFIG_TOOL value.
if method in [DependencyMethods.SDLCONFIG, DependencyMethods.CUPSCONFIG,
DependencyMethods.PCAPCONFIG, DependencyMethods.LIBWMFCONFIG]:

@ -923,7 +923,7 @@ class LibWmfDependency(ExternalDependency):
'libwmf', environment, None, kwargs, ['libwmf-config'], 'libwmf-config')
if ctdep.found():
self.config = ctdep.config
self.type_name = 'config-too'
self.type_name = 'config-tool'
self.version = ctdep.version
self.compile_args = ctdep.get_config_value(['--cflags'], 'compile_args')
self.link_args = ctdep.get_config_value(['--libs'], 'link_args')

Loading…
Cancel
Save