Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Jan 2016 08:12:48 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r293088 - user/ngie/stable-10-libnv/usr.sbin/iovctl
Message-ID:  <201601030812.u038CmG1010492@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



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