mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
b1e258732e
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
12 lines
291 B
Tcsh
12 lines
291 B
Tcsh
#!/bin/csh
|
|
|
|
# Set up environment for man-db. This file is part of the slackbuilds.org
|
|
# man-db build.
|
|
|
|
# Author: B. Watson. License: WTFPL
|
|
|
|
setenv MANPATH /opt/man-db/man:$MANPATH
|
|
set path = ( /opt/man-db/bin $path )
|
|
if ("`id -u`" == "0") then
|
|
set path = ( /opt/man-db/sbin $path )
|
|
endif
|