cvs commit: src ObsoleteFiles.inc

Ruslan Ermilov ru at FreeBSD.org
Mon Aug 14 13:10:10 UTC 2006


On Mon, Aug 14, 2006 at 02:54:05PM +0200, Dag-Erling Sm?rgrav wrote:
> Index: sys/conf/newvers.sh
> ===================================================================
> 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
>  
> -touch version
> +:>> version
>  v=`cat version` u=${USER:-root} d=`pwd` h=${HOSTNAME:-`hostname`} t=`date`
>  i=`${MAKE:-make} -V KERN_IDENT`
>  cat << EOF > vers.c
> 
Here, "touch version" is to update the timestamp which it won't
any longer when replaced by ``:>>''.

> Index: sys/modules/if_ppp/Makefile
> ===================================================================
> 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
>  
>  .if !defined(KERNBUILDDIR)
> -.if ${PPP_INET} > 0
>  opt_inet.h:
> +	:> ${.TARGET}
> +.if ${PPP_INET} > 0
>  	echo "#define INET 1" >> ${.TARGET}
>  .endif
>  
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
>  
Ditto.

The rest looks committable to me.


Cheers,
-- 
Ruslan Ermilov
ru at FreeBSD.org
FreeBSD committer
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 187 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/cvs-src/attachments/20060814/b6edab4b/attachment.pgp


More information about the cvs-src mailing list