mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
6cd426b90c
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
11 lines
334 B
Bash
11 lines
334 B
Bash
# HACK: The binary build depends on this symlink present
|
|
if [ ! -e /usr/lib64/libtinfo.so.5 ]
|
|
then
|
|
if [ ! -e /usr/lib64/libtinfo.so ]
|
|
then
|
|
echo "libtinfo.so cannot be found. Expect problems"
|
|
fi
|
|
echo "Creating symlink /usr/lib64/libtinfo.so.5 => /usr/lib64/libtinfo.so"
|
|
ln -s /usr/lib64/libtinfo.so /usr/lib64/libtinfo.so.5
|
|
fi
|
|
|