mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
7 lines
213 B
Bash
7 lines
213 B
Bash
# If we do not have a lint already:
|
|
if ! command -v lint 1> /dev/null 2> /dev/null ; then
|
|
# Make this the default
|
|
( cd /usr/bin ; ln -sf splint lint )
|
|
( cd /usr/man/man1 ; ln -sf splint.1.gz lint.1.gz )
|
|
fi
|
|
|