summaryrefslogtreecommitdiffstats
path: root/extras
diff options
context:
space:
mode:
Diffstat (limited to 'extras')
-rw-r--r--extras/autowaf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/extras/autowaf.py b/extras/autowaf.py
index 2ceb014..678dfe9 100644
--- a/extras/autowaf.py
+++ b/extras/autowaf.py
@@ -210,9 +210,9 @@ def check_pkg(conf, spec, **kwargs):
args=args + ['--cflags', '--libs'],
**kwargs)
- if not conf.env.MSVC_COMPILER and 'system' in args and args['system']:
+ if not conf.env.MSVC_COMPILER and 'system' in kwargs and kwargs['system']:
conf.system_include_paths.update(
- conf.env['INCLUDES_' + nameify(args['uselib_store'])])
+ conf.env['INCLUDES_' + nameify(kwargs['uselib_store'])])
def normpath(path):
if sys.platform == 'win32':