summaryrefslogtreecommitdiffstats
path: root/tools/build_installer.py
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@theqtcompany.com>2015-03-05 14:42:43 +0100
committerKai Koehne <kai.koehne@theqtcompany.com>2015-03-05 14:58:04 +0000
commit5ba3fe6bae69901d334cefe7a3fbf9248424bec4 (patch)
tree49de4f82c88aebc1880422a5729005fcb7c0ee0f /tools/build_installer.py
parent8061c1a03407372c4420ab60b525fa9a25c78f42 (diff)
Installer: Do not package binary artifacts in /bin
Change-Id: I9b54208b66f894a7eb248fc93a8628513b9102aa Reviewed-by: Niels Weber <niels.weber@theqtcompany.com>
Diffstat (limited to 'tools/build_installer.py')
-rwxr-xr-xtools/build_installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/build_installer.py b/tools/build_installer.py
index a301c6f48..e4213d8bd 100755
--- a/tools/build_installer.py
+++ b/tools/build_installer.py
@@ -84,7 +84,7 @@ def package():
global package_dir
print 'package ...'
os.chdir(package_dir)
- shutil.copytree(os.path.join(build_dir, 'bin'), os.path.join(package_dir, 'bin'), ignore = shutil.ignore_patterns("*.exe.manifest"))
+ shutil.copytree(os.path.join(build_dir, 'bin'), os.path.join(package_dir, 'bin'), ignore = shutil.ignore_patterns("*.exe.manifest","*.exp","*.lib"))
shutil.copytree(os.path.join(build_dir, 'doc'), os.path.join(package_dir, 'doc'))
shutil.copytree(os.path.join(src_dir, 'examples'), os.path.join(package_dir, 'examples'))
shutil.copy(os.path.join(src_dir, 'README'), package_dir)