diff options
author | lloyd <[email protected]> | 2015-02-22 16:17:15 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-02-22 16:17:15 +0000 |
commit | 35d34cae05c5eb114bdbec48f690f330f5edf2fa (patch) | |
tree | 938260d41a8d57de7eee277aa300c4befa8efc08 /src/scripts | |
parent | a29ea0e7a493b0076cd9c91b2a89d7452b9f90d8 (diff) |
Split amalagamation into ISA specific objects
Diffstat (limited to 'src/scripts')
-rwxr-xr-x | src/scripts/install.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/scripts/install.py b/src/scripts/install.py index 69d3a4286..0bf74b7a4 100755 --- a/src/scripts/install.py +++ b/src/scripts/install.py @@ -177,6 +177,13 @@ def main(args = None): shutil.copyfile(cfg['botan_pkgconfig'], os.path.join(pkgconfig_dir, os.path.basename(cfg['botan_pkgconfig']))) + if 'ffi' in cfg['mod_list'].split('\n'): + logging.debug('FFI enabled - installing Python module') + def make_py_lib_path(py_ver): + print sys.path + python_dir = cfg['python_dir'] + logging.debug('Python dir %s' % (python_dir)) + shutil.rmtree(botan_doc_dir, True) shutil.copytree(cfg['doc_output_dir'], botan_doc_dir) |