svn commit: r247637 - stable/9/libexec/tftpd
Marius Strobl
marius at FreeBSD.org
Sat Mar 2 16:33:44 UTC 2013
Author: marius
Date: Sat Mar 2 16:33:43 2013
New Revision: 247637
URL: http://svnweb.freebsd.org/changeset/base/247637
Log:
MFC: r235643
Properly use LDADD & DPADD to link against libwrap.
Modified:
stable/9/libexec/tftpd/Makefile
Directory Properties:
stable/9/libexec/tftpd/ (props changed)
Modified: stable/9/libexec/tftpd/Makefile
==============================================================================
--- stable/9/libexec/tftpd/Makefile Sat Mar 2 16:33:39 2013 (r247636)
+++ stable/9/libexec/tftpd/Makefile Sat Mar 2 16:33:43 2013 (r247637)
@@ -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-stable-9
mailing list