svn commit: r293088 - user/ngie/stable-10-libnv/usr.sbin/iovctl
Garrett Cooper
ngie at FreeBSD.org
Sun Jan 3 08:12:49 UTC 2016
Author: ngie
Date: Sun Jan 3 08:12:47 2016
New Revision: 293088
URL: https://svnweb.freebsd.org/changeset/base/293088
Log:
Use DPADD/LDADD instead of LIBADD because of build differences between
stable/10 and head
It seems that libucl is missing >:/...
Modified:
user/ngie/stable-10-libnv/usr.sbin/iovctl/Makefile
Modified: user/ngie/stable-10-libnv/usr.sbin/iovctl/Makefile
==============================================================================
--- user/ngie/stable-10-libnv/usr.sbin/iovctl/Makefile Sun Jan 3 08:09:13 2016 (r293087)
+++ user/ngie/stable-10-libnv/usr.sbin/iovctl/Makefile Sun Jan 3 08:12:47 2016 (r293088)
@@ -2,7 +2,8 @@
PROG= iovctl
SRCS= iovctl.c parse.c validate.c
-LIBADD= nv ucl m
+DPADD+= ${LIBNV} ${LIBUCL} ${LIBM}
+LDADD+= -lnv -lucl -lm
CFLAGS+=-I${.CURDIR}/../../contrib/libucl/include
More information about the svn-src-user
mailing list