diff options
author | Jack Lloyd <[email protected]> | 2017-12-11 16:25:06 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-12-11 20:10:54 -0500 |
commit | 6c7b3fc30ede3f78cc91868e496ff9b4476423a6 (patch) | |
tree | d11a0df1cd5fbe7a950ae3572c4d1c049b364e5f /src/scripts | |
parent | 48502ed20525e631f5a565877747d0fa1debbfcc (diff) |
Clean up macro generation
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)) |