Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 05 Dec 2000 23:59:46 -0800
From:      Doug Barton <DougB@FreeBSD.org>
To:        Doug White <dwhite@FreeBSD.org>
Cc:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   Re: cvs commit: ports/mail/postfix-current/scripts configure
Message-ID:  <3A2DF1F2.6245BABB@FreeBSD.org>
References:  <200012022028.eB2KSjg01028@freefall.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Doug White wrote:
> 
> dwhite      2000/12/02 12:28:45 PST
> 
>   Modified files:
>     mail/postfix-current/scripts configure
>   Log:
>   Change configure script to use find & grep instead of grep -r.  The -r
>   option is only available on 4.X.  This allows postfix to compile properly
>   on FreeBSD 3.X (and possibly before.)

	grep -R does the same thing on 3.x, why not:

.if ${OSVERSION} >= 400000
GREP_R=	${GREP} -r
.else
GREP_R=	${GREP} -R
.endif

Just a thought,

Doug
-- 
    So what I want to know is, where does the RED brick road go?

	Do YOU Yahoo!?


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3A2DF1F2.6245BABB>