From owner-freebsd-hackers Sat Sep 28 21:14:57 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id VAA07859 for hackers-outgoing; Sat, 28 Sep 1996 21:14:57 -0700 (PDT) Received: from fly.HiWAAY.net (root@fly.HiWAAY.net [204.214.4.2]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id VAA07786 for ; Sat, 28 Sep 1996 21:14:51 -0700 (PDT) Received: from bonsai.hiwaay.net by fly.HiWAAY.net; (8.7.5/1.1.8.2/21Sep95-1003PM) id XAA03233; Sat, 28 Sep 1996 23:14:47 -0500 (CDT) Message-ID: <324DF780.345BF651@hiwaay.net> Date: Sat, 28 Sep 1996 23:13:52 -0500 From: Steve Price X-Mailer: Mozilla 2.02 (X11; I; FreeBSD 2.2-CURRENT i386) MIME-Version: 1.0 To: hackers@freebsd.org Subject: 'make udpate' patches Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-hackers@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Hi all, I was considering the attached patches for inclusion in the tree. If nobody has any strenuous objections in the next day or so I will commit them. Thanks, Steve --- /etc/make.conf.old Fri Sep 27 18:54:25 1996 +++ /etc/make.conf Sat Sep 28 23:08:10 1996 @@ -94,3 +94,9 @@ #SUPFILE= /usr/share/examples/sup/standard-supfile #SUPFILE1= /usr/share/examples/sup/secure-supfile #SUPFILE2= /usr/share/examples/sup/ports-supfile +# +# +# CVS update +# +#CVS_UPDATE= yes +#CVS_FLAGS= -P -d --- /usr/src/Makefile.old Sat Sep 21 01:32:21 1996 +++ /usr/src/Makefile Sat Sep 28 23:06:21 1996 @@ -286,7 +286,11 @@ @echo "--------------------------------------------------------------" @echo "Updating /usr/src from cvs repository" ${CVSROOT} @echo "--------------------------------------------------------------" +.if defined(CVS_FLAGS) + cd ${.CURDIR} && cvs -q update ${CVS_FLAGS} +.else cd ${.CURDIR} && cvs -q update -P -d +.endif .endif