mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-29 02:11:16 +02:00
14 lines
372 B
Bash
14 lines
372 B
Bash
#!/bin/sh
|
|
|
|
# TODO: Remove after merging musl-1.1.14-r8 into stable branch.
|
|
|
|
if [ ! -e /usr/lib/libcrypt.so* ]; then
|
|
cat <<-EOF 1>&2
|
|
* Symlink /usr/lib/libcrypt.so* does not exist, you probably use older
|
|
* revision of lib6-compat package. Since it's necessary for JRuby to work
|
|
* correctly, it'll be created now.
|
|
EOF
|
|
|
|
ln -s /usr/lib/libc.so /usr/lib/libcrypt.so.1
|
|
fi
|