aboutsummaryrefslogtreecommitdiff
path: root/lib/libproc
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 /lib/libproc
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 'lib/libproc')
-rw-r--r--lib/libproc/tests/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libproc/tests/Makefile b/lib/libproc/tests/Makefile
index 326481d572a9..c4a847155663 100644
--- a/lib/libproc/tests/Makefile
+++ b/lib/libproc/tests/Makefile
@@ -6,8 +6,7 @@ PROGS= target_prog
SRCS_target_prog= target_prog.c
BINDIR_target_prog= ${TESTSDIR}
-LDADD+= -lelf -lproc -lrtld_db -lutil
-DPADD+= ${LIBELF} ${LIBPROC} ${LIBRTLD_DB} ${LIBUTIL}
+LIBADD= elf proc rtld_db util
# Ensure that symbols aren't stripped from the test program, as they're needed
# for testing symbol lookup.