mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-26 22:06:35 +01:00
9 lines
218 B
Bash
9 lines
218 B
Bash
|
# If there's no sl link, take over:
|
||
|
if [ ! -r usr/games/sl ]; then
|
||
|
( cd usr/bin ; rm -rf sl )
|
||
|
( cd usr/bin ; ln -sf Sl sl )
|
||
|
( cd usr/man/man1 ; rm -rf sl.1.gz )
|
||
|
( cd usr/man/man1 ; ln -sf Sl.1.gz sl.1.gz )
|
||
|
fi
|
||
|
|