aboutsummaryrefslogtreecommitdiffstats
path: root/build_scripts/utils.py
diff options
context:
space:
mode:
authorShyamnath Premnadh <[email protected]>2023-01-31 13:28:52 +0100
committerShyamnath Premnadh <[email protected]>2023-02-01 09:58:32 +0100
commit3b3ea84dc2d7bc4967096e046bd1951b03a7bc06 (patch)
treea05cf217c486a5b6173e078b981a153ca0493eb7 /build_scripts/utils.py
parenteb9f91af7e327829bbaa0c6e27440430369ce039 (diff)
Fix cross compilation
- some regression from 2afcf8e7545c681e412e5b6d04ab8867e5edd5c7 pathlib changes Pick-to: 6.4 Change-Id: I32173bdffc1280e23b11006466f3dfb19a49fd8f Reviewed-by: Friedemann Kleint <[email protected]> Reviewed-by: Cristian Maureira-Fredes <[email protected]>
Diffstat (limited to 'build_scripts/utils.py')
-rw-r--r--build_scripts/utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/build_scripts/utils.py b/build_scripts/utils.py
index 0a6af2846..b95d491b7 100644
--- a/build_scripts/utils.py
+++ b/build_scripts/utils.py
@@ -902,6 +902,7 @@ def linux_fix_rpaths_for_library(patchelf, executable_path, qt_rpath, override=F
existing_rpaths = linux_get_rpaths(executable_path)
rpaths.extend(existing_rpaths)
+ qt_rpath = str(qt_rpath)
if linux_needs_qt_rpath(executable_path) and qt_rpath not in existing_rpaths:
rpaths.append(qt_rpath)