diff options
Diffstat (limited to 'src/scripts/install.py')
-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 b25ec42de..b91e68b02 100755 --- a/src/scripts/install.py +++ b/src/scripts/install.py @@ -146,7 +146,7 @@ def main(args = None): copy_file(os.path.join(out_dir, static_lib), os.path.join(lib_dir, os.path.basename(static_lib))) - if bool(cfg['with_shared_lib']): + if bool(cfg['build_shared_lib']): if str(cfg['os']) == "windows": shared_lib = process_template('%{lib_prefix}%{libname}.%{so_suffix}') # botan.dll copy_executable(os.path.join(out_dir, shared_lib), |