From 67777143189f4bed843060f58ec3f70dbc9aa965 Mon Sep 17 00:00:00 2001 From: midipix Date: Tue, 12 Jan 2021 22:24:03 +0000 Subject: once/custom.sh: create symbolic links for libnettle, libtinfo{w} as needed. --- once/custom.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/once/custom.sh b/once/custom.sh index 26b3e58..9127057 100755 --- a/once/custom.sh +++ b/once/custom.sh @@ -16,6 +16,18 @@ chmod 0775 "$SYSROOT"/tmp || exit 2 mkdir -p "$SYSROOT"/var/log/ntctty || exit 2 chmod 0775 "$SYSROOT"/var/log/ntctty || exit 2 +if ! [ -f /bin/libnettle.so ]; then + ln -s libnettle.so.8 /bin/libnettle.so +fi + +if ! [ -f /bin/libtinfo.so ]; then + ln -s libtinfo.so.6 /bin/libtinfo.so +fi + +if ! [ -f /bin/libtinfow.so ]; then + ln -s libtinfow.so.6 /bin/libtinfow.so +fi + if [ -f /vendor.sh ]; then /vendor.sh fi -- cgit v1.2.3