diff options
author | bde <bde@FreeBSD.org> | 1994-08-28 18:49:06 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1994-08-28 18:49:06 +0000 |
commit | 4b07d8e78226e63a874eb615588dd84dbdd8e2e0 (patch) | |
tree | f634567066510cf9e0c3eecd0cb9c32c09d5b419 /usr.bin/gcore | |
parent | b7079cf51c68c5d0d95d1488fe15554bd90c0e45 (diff) | |
download | FreeBSD-src-4b07d8e78226e63a874eb615588dd84dbdd8e2e0.zip FreeBSD-src-4b07d8e78226e63a874eb615588dd84dbdd8e2e0.tar.gz |
Add dependencies on libraries to DPADD. Someday this should be done
automagically. -lfoo has to be right to work, but ${LIBFO0} is too
easy to forget or misspell; nothing checks it and it should be
different for shared libraries.
Diffstat (limited to 'usr.bin/gcore')
-rw-r--r-- | usr.bin/gcore/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/gcore/Makefile b/usr.bin/gcore/Makefile index 175f1fc..3a1c7ca 100644 --- a/usr.bin/gcore/Makefile +++ b/usr.bin/gcore/Makefile @@ -2,6 +2,7 @@ PROG= gcore SRCS= gcore.c +DPADD= ${LIBKVM} LDADD= -lkvm .if ${MACHINE} != "sparc" |