diff options
author | Kyle Evans <kevans@FreeBSD.org> | 2018-08-09 20:29:44 +0000 |
---|---|---|
committer | Kyle Evans <kevans@FreeBSD.org> | 2018-08-09 20:29:44 +0000 |
commit | 50a2c229181561378508fdd99dbefdd6af1288e4 (patch) | |
tree | e32170c9d045809ee2b3b49060391cfa419d0fff /lib/libnv | |
parent | 240fcda1e8d88fb050347ac3c0da17dd6a5e3131 (diff) | |
download | src-50a2c229181561378508fdd99dbefdd6af1288e4.tar.gz src-50a2c229181561378508fdd99dbefdd6af1288e4.zip |
libnv: Remove -I${SRCTOP}/sys
This should have been done as part of r336019 -- including ${SRCTOP}/sys is
not a good business model for something that's build in legacy/bootstrap
stages.
Beyond that, libnv seems to build quite alright as legacy, part of
buildworld, and standalone without. Axe it.
Reported by: truckman (head building stable/11)
Tested by: Shawn Webb (HardenedBSD)
MFC after: 3 days
Notes
Notes:
svn path=/head/; revision=337549
Diffstat (limited to 'lib/libnv')
-rw-r--r-- | lib/libnv/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libnv/Makefile b/lib/libnv/Makefile index 6bba1f78a713..bf92041d4c87 100644 --- a/lib/libnv/Makefile +++ b/lib/libnv/Makefile @@ -9,7 +9,7 @@ LIB= nv SHLIB_MAJOR= 0 .PATH: ${SRCTOP}/sys/contrib/libnv ${SRCTOP}/sys/sys -CFLAGS+=-I${SRCTOP}/sys -I${.CURDIR} +CFLAGS+=-I${.CURDIR} SRCS= cnvlist.c SRCS+= dnvlist.c |