summaryrefslogtreecommitdiff
path: root/libexec/tftpd
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>2012-05-19 05:10:47 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>2012-05-19 05:10:47 +0000
commitfab3e10ec33d48f5ace00a388f5c0d1d5e082b0e (patch)
tree077748951a5298a06fcb7cdbb006b6024013d123 /libexec/tftpd
parent1eb9695119be81c7666746b460ee0924c0764906 (diff)
downloadsrc-test-fab3e10ec33d48f5ace00a388f5c0d1d5e082b0e.tar.gz
src-test-fab3e10ec33d48f5ace00a388f5c0d1d5e082b0e.zip
Properly use LDADD & DPADD to link against libwrap.
Notes
Notes: svn path=/head/; revision=235643
Diffstat (limited to 'libexec/tftpd')
-rw-r--r--libexec/tftpd/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/libexec/tftpd/Makefile b/libexec/tftpd/Makefile
index 84458298d6c51..f005001bbb8b7 100644
--- a/libexec/tftpd/Makefile
+++ b/libexec/tftpd/Makefile
@@ -6,6 +6,8 @@ MAN= tftpd.8
SRCS= tftp-file.c tftp-io.c tftp-options.c tftp-transfer.c tftp-utils.c
SRCS+= tftpd.c
WFORMAT=0
-LDFLAGS= -lwrap
+
+DPADD= ${LIBWRAP}
+LDADD= -lwrap
.include <bsd.prog.mk>