svn commit: r235643 - head/libexec/tftpd

Marcel Moolenaar marcel at FreeBSD.org
Sat May 19 05:10:47 UTC 2012


Author: marcel
Date: Sat May 19 05:10:47 2012
New Revision: 235643
URL: http://svn.freebsd.org/changeset/base/235643

Log:
  Properly use LDADD & DPADD to link against libwrap.

Modified:
  head/libexec/tftpd/Makefile

Modified: head/libexec/tftpd/Makefile
==============================================================================
--- head/libexec/tftpd/Makefile	Sat May 19 05:07:03 2012	(r235642)
+++ head/libexec/tftpd/Makefile	Sat May 19 05:10:47 2012	(r235643)
@@ -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>


More information about the svn-src-head mailing list