diff options
author | bapt <bapt@FreeBSD.org> | 2015-04-09 21:08:21 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2015-04-09 21:08:21 +0000 |
commit | c4727a3cf02a088e568a573f65803d491b6aba54 (patch) | |
tree | 000126dc7aeee4824f05283bd70fec89cd9ad5fa /cddl | |
parent | 9844ff4bf40c7de1318c1f3945063ff6e79b1769 (diff) | |
download | FreeBSD-src-c4727a3cf02a088e568a573f65803d491b6aba54.zip FreeBSD-src-c4727a3cf02a088e568a573f65803d491b6aba54.tar.gz |
Convert cftmerge to LIBADD and remove link on libdwarf which is not needed
Diffstat (limited to 'cddl')
-rw-r--r-- | cddl/usr.bin/ctfmerge/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cddl/usr.bin/ctfmerge/Makefile b/cddl/usr.bin/ctfmerge/Makefile index de1e9b4..86e8a0d 100644 --- a/cddl/usr.bin/ctfmerge/Makefile +++ b/cddl/usr.bin/ctfmerge/Makefile @@ -33,7 +33,6 @@ CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris \ -I${OPENSOLARIS_USR_DISTDIR}/tools/ctf/cvt \ -I${OPENSOLARIS_SYS_DISTDIR}/uts/common -DPADD= ${LIBDWARF} ${LIBELF} ${LIBZ} ${LIBPTHREAD} -LDADD= -ldwarf -lelf -lz -lpthread +LIBADD= elf z pthread .include <bsd.prog.mk> |