021e4f
#
021e4f
# /etc/zprofile and ~/.zprofile are run for login shells
021e4f
#
021e4f
021e4f
PATH="$PATH:$HOME/bin"
021e4f
export PATH
021e4f
021e4f
_src_etc_profile()
021e4f
{
021e4f
    #  Make /etc/profile happier, and have possible ~/.zshenv options like
021e4f
    # NOMATCH ignored.
021e4f
    #
021e4f
    emulate -L ksh
021e4f
021e4f
    # source profile
021e4f
    if [ -f /etc/profile ]; then
021e4f
	    source /etc/profile
021e4f
    fi
021e4f
}
021e4f
_src_etc_profile
021e4f
021e4f
unset -f _src_etc_profile