diff options
| author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-04-23 14:58:18 +0200 |
|---|---|---|
| committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-04-29 12:17:40 +0200 |
| commit | e75211d321d7416b8a4871d3015a7915fb86b53b (patch) | |
| tree | e6460b95e475fe7fabbb47ee318160ecb6228357 /mesonbuild/modules/windows.py | |
| parent | bf98ffca9ee67a6a942b9abf96b536692370cf03 (diff) | |
| download | meson-e75211d321d7416b8a4871d3015a7915fb86b53b.tar.gz | |
Fix builtin variable names
Diffstat (limited to 'mesonbuild/modules/windows.py')
| -rw-r--r-- | mesonbuild/modules/windows.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/modules/windows.py b/mesonbuild/modules/windows.py index e8d266e54..87a83fe26 100644 --- a/mesonbuild/modules/windows.py +++ b/mesonbuild/modules/windows.py @@ -59,7 +59,7 @@ class WindowsModule(ExtensionModule): if not rescomp.found(): raise MesonException('Could not find Windows resource compiler') - for (arg, match, type) in [ + for (arg, match, rc_type) in [ ('/?', '^.*Microsoft.*Resource Compiler.*$', ResourceCompilerType.rc), ('--version', '^.*GNU windres.*$', ResourceCompilerType.windres), ]: @@ -67,7 +67,7 @@ class WindowsModule(ExtensionModule): m = re.search(match, o, re.MULTILINE) if m: mlog.log('Windows resource compiler: %s' % m.group()) - self._rescomp = (rescomp, type) + self._rescomp = (rescomp, rc_type) break else: raise MesonException('Could not determine type of Windows resource compiler') |
