Date: Sat, 2 Mar 2013 16:33:44 +0000 (UTC) From: Marius Strobl <marius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r247637 - stable/9/libexec/tftpd Message-ID: <201303021633.r22GXivR057065@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303021633.r22GXivR057065>