tools/llvm: Do not build with symbols
[minix3.git] / etc / profile
blob57e791d1b5420d02a2b175050b822151a704c196
1 # Default system-wide login shell profile.
3 # Activate emacs keybindings and command line history support
4 set -o emacs
5 set -o tabcomplete
7 # Set the default path
8 PATH=/usr/local/bin:/usr/pkg/bin:/usr/bin:/bin:/usr/games
10 # Add ~/bin, iff it is present
11 if [ -e ${HOME}/bin ]; then
12         PATH=${HOME}/bin:${PATH}
15 # Add sbin for root
16 if [ "x$(id -u)" = "x0" ]; then
17         PATH=/usr/local/sbin:/usr/pkg/sbin:/usr/sbin:/sbin:${PATH}
19         if [ -e ${HOME}/sbin ]; then
20                 PATH=${HOME}/sbin:${PATH}
21         fi
24 # Set the timezone
25 export TZ=GMT0
26 RC_TZ=/etc/rc.timezone
28 if [ -f ${RC_TZ} ]; then
29         . ${RC_TZ}
32 export PATH TZ