aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin/gdb
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2015-12-04 03:17:47 +0000
committerBryan Drewery <bdrewery@FreeBSD.org>2015-12-04 03:17:47 +0000
commiteacae6dc66aa881c102f11e2003174eea7e8af74 (patch)
treec7b391aae2de6c3508dafaaad65c558a94b98ab7 /gnu/usr.bin/gdb
parent2fd6394d343802517b376e54de75f382eb7307d0 (diff)
downloadsrc-eacae6dc66aa881c102f11e2003174eea7e8af74.tar.gz
src-eacae6dc66aa881c102f11e2003174eea7e8af74.zip
Fix LDADD/DPADD that should be LIBADD.
Sponsored by: EMC / Isilon Storage Division
Notes
Notes: svn path=/head/; revision=291738
Diffstat (limited to 'gnu/usr.bin/gdb')
-rw-r--r--gnu/usr.bin/gdb/kgdb/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/gdb/kgdb/Makefile b/gnu/usr.bin/gdb/kgdb/Makefile
index 39f4cd520c89..5867f7abdbfd 100644
--- a/gnu/usr.bin/gdb/kgdb/Makefile
+++ b/gnu/usr.bin/gdb/kgdb/Makefile
@@ -8,8 +8,8 @@ BULIBS= ${OBJ_BU}/libbfd/libbfd.a ${OBJ_BU}/libopcodes/libopcodes.a \
${OBJ_BU}/libiberty/libiberty.a
GDBLIBS= ${OBJ_GDB}/libgdb/libgdb.a
-DPADD= ${GDBLIBS} ${BULIBS} ${LIBKVM}
-LDADD= ${GDBLIBS} ${BULIBS} -lkvm
-LIBADD+= m readline ncursesw gnuregex
+DPADD= ${GDBLIBS} ${BULIBS}
+LDADD= ${GDBLIBS} ${BULIBS}
+LIBADD+= m readline ncursesw gnuregex kvm
.include <bsd.prog.mk>