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