svn commit: r312465 - head/lib/libcam

Ngie Cooper ngie at FreeBSD.org
Fri Jan 20 04:03:57 UTC 2017


Author: ngie
Date: Fri Jan 20 04:03:55 2017
New Revision: 312465
URL: https://svnweb.freebsd.org/changeset/base/312465

Log:
  Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
  
  This implifies pathing in make/displayed output
  
  MFC after:    3 weeks
  Sponsored by: Dell EMC Isilon

Modified:
  head/lib/libcam/Makefile

Modified: head/lib/libcam/Makefile
==============================================================================
--- head/lib/libcam/Makefile	Fri Jan 20 03:59:10 2017	(r312464)
+++ head/lib/libcam/Makefile	Fri Jan 20 04:03:55 2017	(r312465)
@@ -36,11 +36,10 @@ MLINKS+=	cam.3 cam_open_device.3 \
 		cam_cdbparse.3 csio_encode_visit.3 \
 		cam_cdbparse.3 buff_encode_visit.3
 
-.PATH:		${.CURDIR}/../../sys/cam/scsi ${.CURDIR}/../../sys/cam/ata \
-		${.CURDIR}/../../sys/cam
+.PATH:		${SRCTOP}/sys/cam/scsi ${SRCTOP}/sys/cam/ata \
+		${SRCTOP}/sys/cam
 
-SDIR=		${.CURDIR}/../../sys
-CFLAGS+=	-I${.CURDIR} -I${SDIR}
+CFLAGS+=	-I${.CURDIR} -I${SRCTOP}/sys
 
 SHLIB_MAJOR=	7
 


More information about the svn-src-head mailing list