From owner-cvs-all@FreeBSD.ORG Mon Aug 14 13:10:10 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E24516A4E2; Mon, 14 Aug 2006 13:10:10 +0000 (UTC) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (relay0.rambler.ru [81.19.66.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4357A43D6D; Mon, 14 Aug 2006 13:10:08 +0000 (GMT) (envelope-from ru@rambler-co.ru) Received: from relay0.rambler.ru (localhost [127.0.0.1]) by relay0.rambler.ru (Postfix) with ESMTP id E4B795E3A; Mon, 14 Aug 2006 17:10:06 +0400 (MSD) Received: from edoofus.park.rambler.ru (unknown [81.19.65.108]) by relay0.rambler.ru (Postfix) with ESMTP id AA31D5E31; Mon, 14 Aug 2006 17:10:06 +0400 (MSD) Received: (from ru@localhost) by edoofus.park.rambler.ru (8.13.6/8.13.6) id k7EDACTS061194; Mon, 14 Aug 2006 17:10:12 +0400 (MSD) (envelope-from ru) Date: Mon, 14 Aug 2006 17:10:12 +0400 From: Ruslan Ermilov To: Dag-Erling Sm?rgrav Message-ID: <20060814131012.GC60989@rambler-co.ru> References: <20060811235619.G93570@atlantis.atlantis.dp.ua> <20060811220244.GC5237@rambler-co.ru> <20060811223642.GA21117@xor.obsecurity.org> <20060812005213.384b744b@Magellan.Leidinger.net> <20060812084253.GA8597@rambler-co.ru> <20060812123531.GA36569@xor.obsecurity.org> <20060813185551.GA15783@rambler-co.ru> <864pwfwpnm.fsf@xps.des.no> <20060814121415.GA59023@rambler-co.ru> <86y7trtr4i.fsf@xps.des.no> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="TiqCXmo5T1hvSQQg" Content-Disposition: inline In-Reply-To: <86y7trtr4i.fsf@xps.des.no> User-Agent: Mutt/1.5.12-2006-07-14 X-Virus-Scanned: No virus found Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src ObsoleteFiles.inc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 13:10:10 -0000 --TiqCXmo5T1hvSQQg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 14, 2006 at 02:54:05PM +0200, Dag-Erling Sm?rgrav wrote: > Index: sys/conf/newvers.sh > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > RCS file: /home/ncvs/src/sys/conf/newvers.sh,v > retrieving revision 1.72 > diff -u -r1.72 newvers.sh > --- sys/conf/newvers.sh 19 Aug 2005 03:56:45 -0000 1.72 > +++ sys/conf/newvers.sh 14 Aug 2006 12:50:47 -0000 > @@ -83,7 +83,7 @@ > echo 0 > version > fi > =20 > -touch version > +:>> version > v=3D`cat version` u=3D${USER:-root} d=3D`pwd` h=3D${HOSTNAME:-`hostname`= } t=3D`date` > i=3D`${MAKE:-make} -V KERN_IDENT` > cat << EOF > vers.c >=20 Here, "touch version" is to update the timestamp which it won't any longer when replaced by ``:>>''. > Index: sys/modules/if_ppp/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > RCS file: /home/ncvs/src/sys/modules/if_ppp/Makefile,v > retrieving revision 1.35 > diff -u -r1.35 Makefile > --- sys/modules/if_ppp/Makefile 27 Feb 2006 16:56:22 -0000 1.35 > +++ sys/modules/if_ppp/Makefile 14 Aug 2006 12:48:11 -0000 > @@ -20,18 +20,20 @@ > .endif > =20 > .if !defined(KERNBUILDDIR) > -.if ${PPP_INET} > 0 > opt_inet.h: > + :> ${.TARGET} > +.if ${PPP_INET} > 0 > echo "#define INET 1" >> ${.TARGET} > .endif > =20 The opt_inet.h target was inside the `.if' on purpose, to allow kmod.mk to create empty .h file if needed itself. Please leave it that way. > -.if ${PPP_IPX} > 0 > opt_ipx.h: > + :> ${.TARGET} > +.if ${PPP_IPX} > 0 > echo "#define IPX ${PPP_IPX}" >> ${.TARGET} > .endif > =20 Ditto. The rest looks committable to me. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --TiqCXmo5T1hvSQQg Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFE4HY0qRfpzJluFF4RAn5FAJ9Zvi4Z2jbrSEYI5nE5Q/hkD/IQqgCghwzz vc1mmVOYctAjIOD7GC/dbpA= =Sw5r -----END PGP SIGNATURE----- --TiqCXmo5T1hvSQQg--