mirror of
https://github.com/Kron4ek/Conty
synced 2025-01-13 20:01:41 +01:00
Copy ld-linux-x86-64.so.2 manually
In case it is missing among other libraries in libs_list, which may happen on some distros.
This commit is contained in:
parent
e3d401da69
commit
8524a4ee0d
1 changed files with 4 additions and 0 deletions
|
@ -113,6 +113,10 @@ for i in ${libs_list}; do
|
|||
fi
|
||||
done
|
||||
|
||||
if [ ! -f utils/ld-linux-x86-64.so.2 ]; then
|
||||
cp -L /lib64/ld-linux-x86-64.so.2 utils
|
||||
fi
|
||||
|
||||
find utils -type f -exec strip --strip-unneeded {} \; 2>/dev/null
|
||||
|
||||
cat <<EOF > utils/info
|
||||
|
|
Loading…
Reference in a new issue