From owner-svn-src-head@freebsd.org Thu Sep 13 16:07:27 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 46FE71091FAC for ; Thu, 13 Sep 2018 16:07:27 +0000 (UTC) (envelope-from ian@freebsd.org) Received: from outbound1b.ore.mailhop.org (outbound1b.ore.mailhop.org [54.200.247.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C968E7732F for ; Thu, 13 Sep 2018 16:07:26 +0000 (UTC) (envelope-from ian@freebsd.org) X-MHO-RoutePath: aGlwcGll X-MHO-User: 1969b92e-b76f-11e8-ac8d-0b43254c4a2d X-Report-Abuse-To: https://support.duocircle.com/support/solutions/articles/5000540958-duocircle-standard-smtp-abuse-information X-Originating-IP: 67.177.211.60 X-Mail-Handler: DuoCircle Outbound SMTP Received: from ilsoft.org (unknown [67.177.211.60]) by outbound1.ore.mailhop.org (Halon) with ESMTPSA id 1969b92e-b76f-11e8-ac8d-0b43254c4a2d; Thu, 13 Sep 2018 16:07:23 +0000 (UTC) Received: from rev (rev [172.22.42.240]) by ilsoft.org (8.15.2/8.15.2) with ESMTP id w8DG7MP3050770; Thu, 13 Sep 2018 10:07:22 -0600 (MDT) (envelope-from ian@freebsd.org) Message-ID: <1536854842.90006.19.camel@freebsd.org> Subject: Re: svn commit: r338633 - head/lib/libpam/pam.d From: Ian Lepore To: Brad Davis , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Date: Thu, 13 Sep 2018 10:07:22 -0600 In-Reply-To: <201809130748.w8D7mnul043291@repo.freebsd.org> References: <201809130748.w8D7mnul043291@repo.freebsd.org> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.18.5.1 FreeBSD GNOME Team Port Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.27 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: Thu, 13 Sep 2018 16:07:27 -0000 On Thu, 2018-09-13 at 07:48 +0000, Brad Davis wrote: > Author: brd > Date: Thu Sep 13 07:48:49 2018 > New Revision: 338633 > URL: https://svnweb.freebsd.org/changeset/base/338633 > > Log: >   Fix build after r338621 by avoiding LINKS and installing the link > manually. >    >   Approved by: re (rgrimes), will (mentor) > > Modified: >   head/lib/libpam/pam.d/Makefile > > Modified: head/lib/libpam/pam.d/Makefile > ===================================================================== > ========= > --- head/lib/libpam/pam.d/Makefile Thu Sep 13 07:15:02 2018 > (r338632) > +++ head/lib/libpam/pam.d/Makefile Thu Sep 13 07:48:49 2018 > (r338633) > @@ -27,7 +27,9 @@ ATPACKAGE+= at >  CONFGROUPS+= FTP >  FTP+= ftpd >  FTPPACKAGE+= ftp > -LINKS= ${FILESDIR}/ftpd ${FILESDIR}/ftp > + > +afterinstallconfig: > + ${INSTALL_LINK} ${TAG_ARGS} ${CONFDIR}/ftpd ${CONFDIR}/ftp I think this line should probably be ${DESTDIR}/${CONFDIR} for both source and dest. -- Ian >  .endif >   >  .if ${MK_TELNET} != "no" >