mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
10 lines
177 B
Bash
10 lines
177 B
Bash
#!/bin/sh
|
|
|
|
MANPATH="$MANPATH:/usr/heimdal/man"
|
|
export MANPATH
|
|
|
|
PATH="${PATH}:/usr/heimdal/bin"
|
|
if [ x"${EUID}" == x"0" ]; then
|
|
PATH="${PATH}:/usr/heimdal/sbin"
|
|
fi
|
|
export PATH
|