aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts/platforms/unix.py
diff options
context:
space:
mode:
Diffstat (limited to 'build_scripts/platforms/unix.py')
-rw-r--r--build_scripts/platforms/unix.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/build_scripts/platforms/unix.py b/build_scripts/platforms/unix.py
index 4b3ed0db0..8e5a5d584 100644
--- a/build_scripts/platforms/unix.py
+++ b/build_scripts/platforms/unix.py
@@ -165,9 +165,15 @@ def prepare_packages_posix(self, vars):
lib_exec_filters = []
if not OPTION['NO_QT_TOOLS']:
lib_exec_filters.extend(['uic', 'rcc'])
+ executables.extend(copydir(
+ "{install_dir}/bin/",
+ "{st_build_dir}/{st_package_name}",
+ filter=["lrelease", "lupdate"],
+ recursive=False, vars=vars))
# Copying assistant/designer
executables.extend(_copy_gui_executable('assistant', vars=vars))
executables.extend(_copy_gui_executable('designer', vars=vars))
+ executables.extend(_copy_gui_executable('linguist', vars=vars))
# Copy libexec
built_modules = self.get_built_pyside_config(vars)['built_modules']