diff options
author | Daniel Neus <[email protected]> | 2016-08-17 17:28:46 +0200 |
---|---|---|
committer | Daniel Neus <[email protected]> | 2016-08-17 17:28:46 +0200 |
commit | c66994184ce89bf827ed42eb474b0913fb25bb39 (patch) | |
tree | 8957e6f92e6519a012b6bc658708eece50a3973c /src/scripts/install.py | |
parent | 199c53632878f3eb73a12239b23eaf1929225e5b (diff) |
missing adjustment in install.py from GH #584
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 33a316ad4..799d8ea4e 100755 --- a/src/scripts/install.py +++ b/src/scripts/install.py @@ -134,7 +134,7 @@ def main(args = None): 'botan') out_dir = process_template('%{out_dir}') - app_exe = process_template('botan%{program_suffix}') + app_exe = process_template('botan%{program_suffix}') if str(cfg['os']) != "windows" else 'botan-cli.exe' for d in [options.destdir, lib_dir, bin_dir, target_doc_dir, target_include_dir]: makedirs(d) |