Skip to content

Commit

Permalink
scripts: Fix linux release.
Browse files Browse the repository at this point in the history
  • Loading branch information
kwagyeman committed Oct 12, 2024
1 parent c6843b6 commit ee36d11
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,11 @@ def add_qt_conf(target_path, qt_prefix_path):
def deploy_qt_conf_files(qtc_binary_path):
if common.is_linux_platform():
qt_prefix_path = os.path.join(qtc_binary_path, '..', 'lib', 'Qt')
add_qt_conf(os.path.join(qtc_binary_path, '..', 'libexec', 'qtcreator'), qt_prefix_path)
# OPENMV-DIFF #
# add_qt_conf(os.path.join(qtc_binary_path, '..', 'libexec', 'qtcreator'), qt_prefix_path)
# OPENMV-DIFF #
add_qt_conf(os.path.join(qtc_binary_path, '..', 'lib', 'qtcreator'), qt_prefix_path)
# OPENMV-DIFF #
add_qt_conf(os.path.join(qtc_binary_path, '..', 'lib', 'Qt', 'bin'), qt_prefix_path) # qtdiag etc
add_qt_conf(qtc_binary_path, qt_prefix_path) # QtC itself
if common.is_windows_platform():
Expand Down

0 comments on commit ee36d11

Please sign in to comment.