Date: Wed, 1 Mar 2017 04:02:37 +0000 (UTC) From: Ngie Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r314453 - head/usr.sbin/yp_mkdb Message-ID: <201703010402.v2142bsk010812@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ngie Date: Wed Mar 1 04:02:36 2017 New Revision: 314453 URL: https://svnweb.freebsd.org/changeset/base/314453 Log: Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones MFC after: 1 week Sponsored by: Dell EMC Isilon Modified: head/usr.sbin/yp_mkdb/Makefile Modified: head/usr.sbin/yp_mkdb/Makefile ============================================================================== --- head/usr.sbin/yp_mkdb/Makefile Wed Mar 1 04:00:17 2017 (r314452) +++ head/usr.sbin/yp_mkdb/Makefile Wed Mar 1 04:02:36 2017 (r314453) @@ -1,13 +1,13 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../libexec/ypxfr ${.CURDIR}/../ypserv +.PATH: ${SRCTOP}/libexec/ypxfr ${SRCTOP}/usr.sbin/ypserv PROG= yp_mkdb MAN= yp_mkdb.8 SRCS= yp_mkdb.c yp_dblookup.c yp_dbwrite.c CFLAGS+= -Dyp_error=warnx -CFLAGS+= -I${.CURDIR}/../../libexec/ypxfr -I${.CURDIR}/../../usr.sbin/ypserv +CFLAGS+= -I${SRCTOP}/libexec/ypxfr -I${SRCTOP}/usr.sbin/ypserv WARNS?= 1
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703010402.v2142bsk010812>