957802cd0c
With the import of Xorg, a proper separation between login-time and sub shell-time of the environment setup is necessary. Instead of re-developping this from scratch, I am taking the opportunity to import the NetBSD default environment. Change-Id: Ib6a8fbd9c2f407ccd59be57a52ef9df21c2c9ce7
17 lines
328 B
Bash
Executable file
17 lines
328 B
Bash
Executable file
# $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
|