xref: /minix3/etc/profile (revision 957802cd0cf83421da2a4a3998e8a7f4f54e6028)
1*957802cdSLionel Sambuc#	$NetBSD: profile,v 1.1 1997/06/21 06:07:39 mikel Exp $
2*957802cdSLionel Sambuc#
3*957802cdSLionel Sambuc# System-wide .profile file for sh(1).
4a5f47c23SLionel Sambuc
5*957802cdSLionel Sambuc# MINIX specifics
6094431ddSLionel Sambuc# Set library path
7*957802cdSLionel Sambucexport LD_LIBRARY_PATH="/lib:/usr/lib:/usr/X11R7/lib:/usr/pkg/lib:/usr/local/lib"
8094431ddSLionel Sambuc
9a5f47c23SLionel Sambuc# Set the timezone
10a5f47c23SLionel Sambucexport TZ=GMT0
11a5f47c23SLionel SambucRC_TZ=/etc/rc.timezone
12a5f47c23SLionel Sambuc
13a5f47c23SLionel Sambucif [ -f ${RC_TZ} ]; then
14a5f47c23SLionel Sambuc	. ${RC_TZ}
15a5f47c23SLionel Sambucfi
16a5f47c23SLionel Sambuc
17*957802cdSLionel Sambucexport TZ
18