aboutsummaryrefslogtreecommitdiff
path: root/lib/libnv
diff options
context:
space:
mode:
authorMariusz Zaborski <oshogbo@FreeBSD.org>2015-07-04 16:33:37 +0000
committerMariusz Zaborski <oshogbo@FreeBSD.org>2015-07-04 16:33:37 +0000
commit54f98da930424cfb071247f24a5c77bd5fca1618 (patch)
treef63c85b8d1ce38d4ce3462fedd0442350e88453f /lib/libnv
parent06844c0f7e6b614f09127e0b6c4609bcfbb3fc21 (diff)
downloadsrc-54f98da930424cfb071247f24a5c77bd5fca1618.tar.gz
src-54f98da930424cfb071247f24a5c77bd5fca1618.zip
Move the nvlist source and private includes from sys/kern to seperate
directory sys/contrib/libnv. The goal of this operation is to NOT install header files which shouldn't be used outside the nvlist library. Approved by: pjd (mentor)
Notes
Notes: svn path=/head/; revision=285139
Diffstat (limited to 'lib/libnv')
-rw-r--r--lib/libnv/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libnv/Makefile b/lib/libnv/Makefile
index 1aef64e68597..38ec009815b7 100644
--- a/lib/libnv/Makefile
+++ b/lib/libnv/Makefile
@@ -7,13 +7,13 @@ SHLIBDIR?= /lib
LIB= nv
SHLIB_MAJOR= 0
-.PATH: ${.CURDIR}/../../sys/kern ${.CURDIR}/../../sys/sys
+.PATH: ${.CURDIR}/../../sys/contrib/libnv ${.CURDIR}/../../sys/sys
CFLAGS+=-I${.CURDIR}/../../sys -I${.CURDIR}
-SRCS= subr_dnvlist.c
+SRCS= dnvlist.c
SRCS+= msgio.c
-SRCS+= subr_nvlist.c
-SRCS+= subr_nvpair.c
+SRCS+= nvlist.c
+SRCS+= nvpair.c
WARNS?= 6