From owner-cvs-all Tue Mar 21 0:50:24 2000 Delivered-To: cvs-all@freebsd.org Received: from dt051n0b.san.rr.com (dt051n0b.san.rr.com [204.210.32.11]) by hub.freebsd.org (Postfix) with ESMTP id 1B7CD37B5EB; Tue, 21 Mar 2000 00:50:14 -0800 (PST) (envelope-from Doug@gorean.org) Received: from gorean.org (doug@master [10.0.0.2]) by dt051n0b.san.rr.com (8.9.3/8.9.3) with ESMTP id AAA63936; Tue, 21 Mar 2000 00:50:12 -0800 (PST) (envelope-from Doug@gorean.org) Message-ID: <38D737C4.1B51B9E8@gorean.org> Date: Tue, 21 Mar 2000 00:50:12 -0800 From: Doug Barton Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.72 [en] (X11; U; FreeBSD 5.0-CURRENT-0316 i386) X-Accept-Language: en MIME-Version: 1.0 To: Dan Moschuk Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/libexec Makefile References: <200003201710.JAA62066@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------E796E5E061D2A8750F7DC8B9" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. --------------E796E5E061D2A8750F7DC8B9 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Dan Moschuk wrote: > > dan 2000/03/20 09:10:17 PST > > Modified files: > gnu/libexec Makefile > Log: > Wrap building of uucp related programs around NOUUCP knob. This is a welcome addition, you saved me doing it myself. :) I would like to suggest the attached patch as well. You might also consider naming the option NO_UUCP to keep more in line with the other recent options that prevent the compilation of specific bits, but there is plenty of precedence both ways. Thanks, Doug -- "While the future's there for anyone to change, still you know it seems, it would be easier sometimes to change the past" - Jackson Browne, "Fountain of Sorrow" --------------E796E5E061D2A8750F7DC8B9 Content-Type: text/plain; charset=us-ascii; name="src_libexec_Makefile.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="src_libexec_Makefile.diff" Index: Makefile =================================================================== RCS file: /usr/ncvs/src/libexec/Makefile,v retrieving revision 1.42 diff -u -r1.42 Makefile --- Makefile 1999/11/30 06:23:04 1.42 +++ Makefile 2000/03/21 07:55:28 @@ -24,7 +24,6 @@ rshd \ talkd \ tftpd \ - uucpd \ xtend \ ypxfr @@ -34,6 +33,10 @@ .if !defined(NO_SENDMAIL) SUBDIR+=mail.local smrsh +.endif + +.if !defined(NOUUCP) +SUBDIR+=uucpd .endif .if ${OBJFORMAT} == aout --------------E796E5E061D2A8750F7DC8B9-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message