diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2018-01-14 15:27:42 +0000 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2018-01-15 13:11:37 +0000 |
commit | 0a6cbcce0378f9aa12cff37b222e9e85cc0f874e (patch) | |
tree | 1574604e71e33ea1fb8964699cbb40196d1661d5 | |
parent | d8967054d14efad045a9f2ea26b2fe77acab7e5b (diff) | |
download | meson-0a6cbcce0378f9aa12cff37b222e9e85cc0f874e.zip meson-0a6cbcce0378f9aa12cff37b222e9e85cc0f874e.tar.gz meson-0a6cbcce0378f9aa12cff37b222e9e85cc0f874e.tar.bz2 |
Fix typos
-rw-r--r-- | mesonbuild/dependencies/base.py | 2 | ||||
-rw-r--r-- | mesonbuild/dependencies/misc.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/dependencies/base.py b/mesonbuild/dependencies/base.py index e29d4de..01df9d0 100644 --- a/mesonbuild/dependencies/base.py +++ b/mesonbuild/dependencies/base.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]: diff --git a/mesonbuild/dependencies/misc.py b/mesonbuild/dependencies/misc.py index 9614f1f..cf3b51b 100644 --- a/mesonbuild/dependencies/misc.py +++ b/mesonbuild/dependencies/misc.py @@ -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') |