mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
12 lines
239 B
Bash
12 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
|