From owner-svn-src-head@freebsd.org Thu Aug 16 20:04:28 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 678011075686; Thu, 16 Aug 2018 20:04:28 +0000 (UTC) (envelope-from rpokala@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1FAD2772B0; Thu, 16 Aug 2018 20:04:28 +0000 (UTC) (envelope-from rpokala@freebsd.org) Received: from [172.17.133.74] (unknown [12.202.168.51]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: rpokala) by smtp.freebsd.org (Postfix) with ESMTPSA id 865D020371; Thu, 16 Aug 2018 20:04:27 +0000 (UTC) (envelope-from rpokala@freebsd.org) User-Agent: Microsoft-MacOutlook/10.10.0.180812 Date: Thu, 16 Aug 2018 13:04:24 -0700 Subject: Re: svn commit: r337928 - head/secure/usr.sbin/sshd From: Ravi Pokala To: Bryan Drewery , , , Message-ID: Thread-Topic: svn commit: r337928 - head/secure/usr.sbin/sshd References: <201808161948.w7GJm7ZM081006@repo.freebsd.org> In-Reply-To: <201808161948.w7GJm7ZM081006@repo.freebsd.org> Mime-version: 1.0 Content-type: text/plain; charset="UTF-8" Content-transfer-encoding: quoted-printable 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, 16 Aug 2018 20:04:28 -0000 My amd64 buildworld with this change just completed. Thanks Bryan! -Ravi (rpokala@) =EF=BB=BF-----Original Message----- From: on behalf of Bryan Drewery Date: 2018-08-16, Thursday at 12:48 To: , , Subject: svn commit: r337928 - head/secure/usr.sbin/sshd Author: bdrewery Date: Thu Aug 16 19:48:07 2018 New Revision: 337928 URL: https://svnweb.freebsd.org/changeset/base/337928 Log: Fix build after r337852: Don't rebuild moduli based on unrelated moduli.c =20 Reported by: many, delphij (moduli.c issue) Modified: head/secure/usr.sbin/sshd/Makefile Modified: head/secure/usr.sbin/sshd/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- head/secure/usr.sbin/sshd/Makefile Thu Aug 16 19:39:02 2018 (r337927) +++ head/secure/usr.sbin/sshd/Makefile Thu Aug 16 19:48:07 2018 (r337928) @@ -28,6 +28,9 @@ MAN=3D sshd.8 sshd_config.5 CFLAGS+=3D-I${SSHDIR} -include ssh_namespace.h SRCS+=3D ssh_namespace.h =20 +# Don't rebuild based on moduli.c +moduli: .MADE + # pam should always happen before ssh here for static linking LIBADD=3D pam ssh util =20