From owner-svn-src-head@FreeBSD.ORG Sat May 19 05:10:47 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D169D106566B; Sat, 19 May 2012 05:10:47 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BD83C8FC12; Sat, 19 May 2012 05:10:47 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q4J5AlLI001603; Sat, 19 May 2012 05:10:47 GMT (envelope-from marcel@svn.freebsd.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4J5AlSa001601; Sat, 19 May 2012 05:10:47 GMT (envelope-from marcel@svn.freebsd.org) Message-Id: <201205190510.q4J5AlSa001601@svn.freebsd.org> From: Marcel Moolenaar Date: Sat, 19 May 2012 05:10:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r235643 - head/libexec/tftpd X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 May 2012 05:10:47 -0000 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