Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 May 2015 21:57:12 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r283129 - head/cddl/usr.bin/ctfdump
Message-ID:  <201505192157.t4JLvC4f010183@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Tue May 19 21:57:11 2015
New Revision: 283129
URL: https://svnweb.freebsd.org/changeset/base/283129

Log:
  Convert to LIBADD
  Remove dependency on pthread, it is not needed

Modified:
  head/cddl/usr.bin/ctfdump/Makefile

Modified: head/cddl/usr.bin/ctfdump/Makefile
==============================================================================
--- head/cddl/usr.bin/ctfdump/Makefile	Tue May 19 21:16:53 2015	(r283128)
+++ head/cddl/usr.bin/ctfdump/Makefile	Tue May 19 21:57:11 2015	(r283129)
@@ -17,7 +17,6 @@ CFLAGS+=	-I${OPENSOLARIS_USR_DISTDIR} \
 		-I${OPENSOLARIS_USR_DISTDIR}/tools/ctf/common \
 		-I${OPENSOLARIS_SYS_DISTDIR}/uts/common
 
-DPADD=		${LIBPTHREAD} ${LIBELF} ${LIBZ}
-LDADD=		-lpthread -lelf -lz
+LIBADD=		elf z
 
 .include <bsd.prog.mk>



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