@@ -215,7 +215,7 @@ def find_files(directory, patterns):
215
215
external_so_files .append ((resvg_path , os .path .basename (resvg_path )))
216
216
217
217
# Add QtWebEngineProcess (if found)
218
- web_process_path = "/usr/lib/x86_64-linux-gnu/ qt5/libexec/QtWebEngineProcess"
218
+ web_process_path = ARCHLIB + " qt5/libexec/QtWebEngineProcess"
219
219
external_so_files .append ((web_process_path , os .path .basename (web_process_path )))
220
220
221
221
# Add QtWebEngineProcess Resources & Local
@@ -226,12 +226,12 @@ def find_files(directory, patterns):
226
226
external_so_files .append ((filename , os .path .relpath (filename , start = qt5_path )))
227
227
228
228
# Add Qt xcbglintegrations plugin
229
- xcbgl_path = "/usr/lib/x86_64-linux-gnu/ qt5/"
229
+ xcbgl_path = ARCHLIB + " qt5/"
230
230
for filename in find_files (os .path .join (xcbgl_path , "plugins" , "xcbglintegrations" ), ["*" ]):
231
231
external_so_files .append ((filename , os .path .relpath (filename , start = xcbgl_path )))
232
232
233
233
# Add libsoftokn3
234
- nss_path = "/usr/lib/x86_64-linux-gnu/ nss/"
234
+ nss_path = ARCHLIB + " nss/"
235
235
for filename in find_files (nss_path , ["*" ]):
236
236
external_so_files .append ((filename , os .path .basename (filename )))
237
237
0 commit comments