diff options
author | Jack Lloyd <[email protected]> | 2017-12-06 16:53:35 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-12-06 16:53:35 -0500 |
commit | 2ff5d004c95f69cc29a1ac832c29be4d411bc66a (patch) | |
tree | 401db68c9c1828f1c53b1315ee7c16d4607b63d8 /src/scripts | |
parent | e2b20a0803d1a7e2803ddddb13d981293d4ee162 (diff) |
Fix make clean target - didn't remove libbotan-2.so symlink files [ci skip]
Diffstat (limited to 'src/scripts')
-rwxr-xr-x | src/scripts/cleanup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/cleanup.py b/src/scripts/cleanup.py index ae2f588f5..6dc7d2408 100755 --- a/src/scripts/cleanup.py +++ b/src/scripts/cleanup.py @@ -109,7 +109,7 @@ def main(args=None): remove_file(build_config['test_exe']) lib_basename = build_config['lib_prefix'] + build_config['libname'] - matches_libname = re.compile('^' + lib_basename + '.([a-z]+)') + matches_libname = re.compile('^' + lib_basename + '.([a-z]+)((\\.[0-9\\.]+)|$)') known_suffix = ['a', 'so', 'dll', 'manifest', 'exp'] |