Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Feb 2017 06:31:26 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r313598 - stable/10/lib/libutil
Message-ID:  <201702110631.v1B6VQLN001224@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Sat Feb 11 06:31:26 2017
New Revision: 313598
URL: https://svnweb.freebsd.org/changeset/base/313598

Log:
  MFC r312470:
  
  Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
  
  This implifies pathing in make/displayed output

Modified:
  stable/10/lib/libutil/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libutil/Makefile
==============================================================================
--- stable/10/lib/libutil/Makefile	Sat Feb 11 06:30:25 2017	(r313597)
+++ stable/10/lib/libutil/Makefile	Sat Feb 11 06:31:26 2017	(r313598)
@@ -24,7 +24,7 @@ CFLAGS+= -DLIBC_SCCS
 CFLAGS+= -DINET6
 .endif
 
-CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../libc/gen/
+CFLAGS+= -I${.CURDIR} -I${SRCTOP}/lib/libc/gen/
 
 MAN+=	expand_number.3 flopen.3 fparseln.3 hexdump.3 \
 	humanize_number.3 kinfo_getallproc.3 kinfo_getfile.3 \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702110631.v1B6VQLN001224>