Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Sep 1996 23:13:52 -0500
From:      Steve Price <sprice@hiwaay.net>
To:        hackers@freebsd.org
Subject:   'make udpate' patches
Message-ID:  <324DF780.345BF651@hiwaay.net>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?324DF780.345BF651>