diff options
Diffstat (limited to 'once/custom.sh')
-rwxr-xr-x | once/custom.sh | 12 |
1 files changed, 12 insertions, 0 deletions
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 |