From 52429c81815ef97eaa72e16407c1bc6d90875936 Mon Sep 17 00:00:00 2001 From: Daniel Neus Date: Tue, 16 Aug 2016 16:45:09 +0200 Subject: fix install.py to copy botand.dll in debug mode --- src/scripts/install.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') 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: -- cgit v1.2.3