diff options
author | Jack Lloyd <[email protected]> | 2017-12-11 22:32:25 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-12-11 22:32:25 -0500 |
commit | fd05ab57f2c13e0ba2ac371d3fa81b4ecdcecfc7 (patch) | |
tree | 1539bcb42c02b62a8cf25baf1cf2c1cc51810bf5 /src/scripts | |
parent | 4206f35cad8488f96c7236b6d07b982fd56923b1 (diff) | |
parent | 4cc5e2fe991d4233f053abedf73a5dc22594330b (diff) |
Merge GH #1351 Cleanup macro generation in build.h
Diffstat (limited to 'src/scripts')
-rwxr-xr-x | src/scripts/install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/install.py b/src/scripts/install.py index c6e4ec2cd..d30493ebe 100755 --- a/src/scripts/install.py +++ b/src/scripts/install.py @@ -229,7 +229,7 @@ def main(args): copy_file(cfg['botan_pkgconfig'], prepend_destdir(os.path.join(pkgconfig_dir, os.path.basename(cfg['botan_pkgconfig'])))) - if 'ffi' in cfg['mod_list'].split('\n'): + if 'ffi' in cfg['mod_list']: for ver in cfg['python_version'].split(','): py_lib_path = os.path.join(lib_dir, 'python%s' % (ver), 'site-packages') logging.debug('Installing python module to %s' % (py_lib_path)) |