Commit 4eb51aa8 authored by Tres Seaver's avatar Tres Seaver

Typo.

parent 2df16fd1
...@@ -161,8 +161,8 @@ def build_ext(buildout, options): ...@@ -161,8 +161,8 @@ def build_ext(buildout, options):
if value is not None: if value is not None:
values = [_prefix_non_special(v) values = [_prefix_non_special(v)
for v in value.strip().split('\n') if v.strip()] for v in value.strip().split('\n') if v.strip()]
result['rpath'] = os.pathsep.join(value) result['rpath'] = os.pathsep.join(values)
options['rpath'] = os.pathsep.join(value) options['rpath'] = os.pathsep.join(values)
swig = options.get('swig') swig = options.get('swig')
if swig: if swig:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment