summaryrefslogtreecommitdiff
path: root/etc/profile
blob: 5801079e0e447d075eb5b3f28cc37bad262b67ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#	$NetBSD: profile,v 1.1 1997/06/21 06:07:39 mikel Exp $
#
# System-wide .profile file for sh(1).

# MINIX specifics
# Set library path
export LD_LIBRARY_PATH="/lib:/usr/lib:/usr/X11R7/lib:/usr/pkg/lib:/usr/local/lib"

# Set the timezone
export TZ=GMT0
RC_TZ=/etc/rc.timezone

if [ -f ${RC_TZ} ]; then
	. ${RC_TZ}
fi

export TZ