diff options
-rwxr-xr-x | src/scripts/install.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/scripts/install.py b/src/scripts/install.py index d87e69b49..33a316ad4 100755 --- a/src/scripts/install.py +++ b/src/scripts/install.py @@ -159,7 +159,8 @@ def main(args = None): if bool(cfg['build_shared_lib']): if str(cfg['os']) == "windows": - soname_base = process_template('%{soname_base}') # botan.dll + libname = process_template('%{libname}') + soname_base = libname + '.dll' copy_executable(os.path.join(out_dir, soname_base), os.path.join(lib_dir, soname_base)) else: |