svn commit: r247636 - stable/8/libexec/tftpd

Marius Strobl marius at FreeBSD.org
Sat Mar 2 16:33:40 UTC 2013


Author: marius
Date: Sat Mar  2 16:33:39 2013
New Revision: 247636
URL: http://svnweb.freebsd.org/changeset/base/247636

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

Modified:
  stable/8/libexec/tftpd/Makefile
Directory Properties:
  stable/8/libexec/tftpd/   (props changed)

Modified: stable/8/libexec/tftpd/Makefile
==============================================================================
--- stable/8/libexec/tftpd/Makefile	Sat Mar  2 16:30:18 2013	(r247635)
+++ stable/8/libexec/tftpd/Makefile	Sat Mar  2 16:33:39 2013	(r247636)
@@ -7,6 +7,8 @@ SRCS=	tftp-file.c tftp-io.c tftp-options
 SRCS+=	tftpd.c
 WARNS=	6
 WFORMAT=0
-LDFLAGS= -lwrap
+
+DPADD=	${LIBWRAP}
+LDADD=	-lwrap
 
 .include <bsd.prog.mk>


More information about the svn-src-stable-8 mailing list