Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 Mar 2000 00:50:12 -0800
From:      Doug Barton <Doug@gorean.org>
To:        Dan Moschuk <dan@FreeBSD.ORG>
Cc:        cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG
Subject:   Re: cvs commit: src/gnu/libexec Makefile
Message-ID:  <38D737C4.1B51B9E8@gorean.org>
References:  <200003201710.JAA62066@freefall.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
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




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