svn commit: r314464 - head/usr.sbin/yppush

Rodney W. Grimes freebsd-rwg at pdx.rh.CN85.dnsmgr.net
Wed Mar 1 05:38:57 UTC 2017


Would it be possible to not do this as 1000 commits?

> Author: ngie
> Date: Wed Mar  1 04:24:24 2017
> New Revision: 314464
> URL: https://svnweb.freebsd.org/changeset/base/314464
> 
> Log:
>   Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
>   
>   This simplifies pathing in make/displayed output.
>   
>   MFC after:	1 week
>   Sponsored by:	Dell EMC Isilon
> 
> Modified:
>   head/usr.sbin/yppush/Makefile
> 
> Modified: head/usr.sbin/yppush/Makefile
> ==============================================================================
> --- head/usr.sbin/yppush/Makefile	Wed Mar  1 04:23:53 2017	(r314463)
> +++ head/usr.sbin/yppush/Makefile	Wed Mar  1 04:24:24 2017	(r314464)
> @@ -1,8 +1,7 @@
>  # $FreeBSD$
>  
> -RPCDIR=	${.CURDIR}/../../include/rpcsvc
> -.PATH: ${RPCDIR} ${.CURDIR}/../../usr.sbin/ypserv \
> -       ${.CURDIR}/../../libexec/ypxfr
> +RPCDIR=	${SRCTOP}/include/rpcsvc
> +.PATH: ${RPCDIR} ${SRCTOP}/usr.sbin/ypserv ${SRCTOP}/libexec/ypxfr
>  
>  PROG=	yppush
>  MAN=	yppush.8
> @@ -10,7 +9,7 @@ SRCS=	ypxfr_getmap.c yp_dblookup.c yp_er
>  	${GENSRCS}
>  GENSRCS=yp.h yp_clnt.c yppush_svc.c
>  
> -CFLAGS+= -I. -I${.CURDIR}/../../libexec/ypxfr
> +CFLAGS+= -I. -I${SRCTOP}/libexec/ypxfr
>  
>  WARNS?=	2
>  
> _______________________________________________
> svn-src-head at freebsd.org mailing list
> https://lists.freebsd.org/mailman/listinfo/svn-src-head
> To unsubscribe, send any mail to "svn-src-head-unsubscribe at freebsd.org"
> 

-- 
Rod Grimes                                                 rgrimes at freebsd.org


More information about the svn-src-all mailing list