We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4a29a4 commit 50e2335Copy full SHA for 50e2335
installer/utils/linux-gnu_utils.sh
@@ -13,7 +13,7 @@ copy_required_libs() {
13
local binaries="$@"
14
local libs=$(env LD_LIBRARY_PATH="$targetLibsDir:$hostDirLib:$qtDirLib:${LD_LIBRARY_PATH:-}" ldd $binaries \
15
| grep so | sed -e '/^[^\t]/ d' | sed -e 's/\t//' | sed -e 's/.*=..//' | sed -e 's/ (0.*)//' \
16
- | xargs realpath -L -s | sort -u | grep -Ev "^$(realpath -e $targetLibsDir)|linux-vdso|^/lib/|^/lib64/")
+ | xargs realpath -L -s | sort -u | grep -Ev "^$(realpath -e $targetLibsDir)|linux-vdso|^/lib64/")
17
local rsync=""
18
19
for lib in ${libs}; do rsync="$rsync ${lib}*" ; done
0 commit comments