aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts/install.py
diff options
context:
space:
mode:
authorAlon Bar-Lev <[email protected]>2015-09-15 00:18:19 +0300
committerAlon Bar-Lev <[email protected]>2015-09-15 00:48:15 +0300
commitb8f438dc65b68cdc7535366bef247648b4107f91 (patch)
tree04b0144ee5c7ea1cd4cd5b749aff477fc4bd6678 /src/scripts/install.py
parent8f732dccce692eaca509fc9732702df62cfa5c87 (diff)
build: support multiple python versions
Signed-off-by: Alon Bar-Lev <[email protected]>
Diffstat (limited to 'src/scripts/install.py')
-rwxr-xr-xsrc/scripts/install.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/scripts/install.py b/src/scripts/install.py
index 2c69213e5..d1d62b6c5 100755
--- a/src/scripts/install.py
+++ b/src/scripts/install.py
@@ -181,11 +181,12 @@ def main(args = None):
os.path.join(pkgconfig_dir, os.path.basename(cfg['botan_pkgconfig'])))
if 'ffi' in cfg['mod_list'].split('\n'):
- py_lib_path = os.path.join(lib_dir, 'python%s' % (cfg['python_version']), 'site-packages')
- logging.debug('Installing python module to %s' % (py_lib_path))
- makedirs(py_lib_path)
- for py in ['botan.py']:
- copy_file(os.path.join(cfg['python_dir'], py), os.path.join(py_lib_path, py))
+ 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))
+ makedirs(py_lib_path)
+ for py in ['botan.py']:
+ copy_file(os.path.join(cfg['python_dir'], py), os.path.join(py_lib_path, py))
shutil.rmtree(target_doc_dir, True)
shutil.copytree(cfg['doc_output_dir'], target_doc_dir)