Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 May 2012 05:10:47 +0000 (UTC)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r235643 - head/libexec/tftpd
Message-ID:  <201205190510.q4J5AlSa001601@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201205190510.q4J5AlSa001601>