Skip site navigation (1)Skip section navigation (2)
Date:      25 Sep 2002 11:27:00 -0700
From:      swear@attbi.com (Gary W. Swearingen)
To:        "Greg 'groggy' Lehey" <grog@FreeBSD.org>
Cc:        Dru <dlavigne6@cogeco.ca>, FreeBSD Questions <questions@FreeBSD.org>
Subject:   Re: Mplayer
Message-ID:  <1q8z1q9b7v.z1q@localhost.localdomain>
In-Reply-To: <20020925011515.GF30669@wantadilla.lemis.com>
References:  <20020925010414.GD30669@wantadilla.lemis.com> <20020924210816.C763-100000@dhcp-17-14.kico2.on.cogeco.ca> <20020925011515.GF30669@wantadilla.lemis.com>

next in thread | previous in thread | raw e-mail | index | archive | help
Greg 'groggy' Lehey <grog@FreeBSD.org> 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 majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1q8z1q9b7v.z1q>