mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
13 lines
239 B
Bash
13 lines
239 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Set INFOPATH and MANPATH
|
||
|
INFOPATH="/usr/heimdal/info:"
|
||
|
MANPATH="${MANPATH}:/usr/heimdal/man"
|
||
|
|
||
|
PATH="${PATH}:/usr/heimdal/bin"
|
||
|
if [ x"${EUID}" == x"0" ]; then
|
||
|
PATH="${PATH}:/usr/heimdal/sbin"
|
||
|
fi
|
||
|
|
||
|
export INFOPATH MANPATH PATH
|