Greg 'groggy' Lehey <[EMAIL PROTECTED]> writes:
> Make ()
> {
> if [ "${MAKE}" = "" ]; then
> MAKE=make
> fi
> xtset `uname -n|sed 's:\..*$::'`:`pwd`: Make "$* "`date`
> (echo '=====' `date`: Make $*; /usr/bin/time -l ${MAKE} 2>&1 $*) | tee -a
>Make.log
> cd .
> }
That initial test could be deleted if you replace "${MAKE}" with
"${MAKE:=make}".
If that seems too obscure, you could replace the test with
'MAKE=${MAKE:-make}'.
If that seems too obscure, well, excuuuuse ME....
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message