diff options
author | Daniel Neus <[email protected]> | 2016-08-16 16:45:09 +0200 |
---|---|---|
committer | Daniel Neus <[email protected]> | 2016-08-16 16:45:09 +0200 |
commit | 52429c81815ef97eaa72e16407c1bc6d90875936 (patch) | |
tree | 6911034925c0062ade19f0b6fd55142490ba1dfe /src | |
parent | b5c0beb0c63ba7850de6c1be5f362e831e805490 (diff) |
fix install.py to copy botand.dll in debug mode
Diffstat (limited to 'src')
-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: |