3349f8bb8f
This fixes the build and I will redo these changes as part of a future review that organizes them differently. The way I tried to do it here could be done better. Sorry for the noise. Approved by: will (mentor) Differential Revision: https://reviews.freebsd.org/D16737
17 lines
405 B
Plaintext
17 lines
405 B
Plaintext
# $FreeBSD$
|
|
#
|
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:~/bin
|
|
export PATH
|
|
HOME=/root
|
|
export HOME
|
|
TERM=${TERM:-xterm}
|
|
export TERM
|
|
PAGER=less
|
|
export PAGER
|
|
|
|
# Query terminal size; useful for serial lines.
|
|
if [ -x /usr/bin/resizewin ] ; then /usr/bin/resizewin -z ; fi
|
|
|
|
# Uncomment to display a random cookie on each login.
|
|
# if [ -x /usr/bin/fortune ] ; then /usr/bin/fortune -s ; fi
|