From owner-svn-src-head@freebsd.org Fri Oct 12 11:34:02 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 6F56510B86F3; Fri, 12 Oct 2018 11:34:02 +0000 (UTC) (envelope-from kevans@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 236697DD8F; Fri, 12 Oct 2018 11:34:02 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from mail-lf1-f46.google.com (mail-lf1-f46.google.com [209.85.167.46]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G3" (verified OK)) (Authenticated sender: kevans) by smtp.freebsd.org (Postfix) with ESMTPSA id CA9AF1D21E; Fri, 12 Oct 2018 11:34:01 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by mail-lf1-f46.google.com with SMTP id q39-v6so9079947lfi.8; Fri, 12 Oct 2018 04:34:01 -0700 (PDT) X-Gm-Message-State: ABuFfojfJnAeiykeE9hobOSRQwckqVmm2mlVNNoZn4ZtWYRwILqH73z1 HGS6/Lvv0juRP5fHB803Jh0Zh/svecOV34sQ64Q= X-Google-Smtp-Source: ACcGV62mmqkfMnvVqw2DfnqEObiOubI0u1b0ZbssP3k1Il7TzEDaYu1ZBFwcrk9AX28/PKHPYgT+Zr8W2aa8JasCfRc= X-Received: by 2002:a19:59d3:: with SMTP id n202-v6mr3633180lfb.125.1539344040211; Fri, 12 Oct 2018 04:34:00 -0700 (PDT) MIME-Version: 1.0 References: <201810120542.w9C5gcW0095391@repo.freebsd.org> In-Reply-To: <201810120542.w9C5gcW0095391@repo.freebsd.org> From: Kyle Evans Date: Fri, 12 Oct 2018 06:33:48 -0500 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r339326 - head To: =?UTF-8?Q?Dag=2DErling_Sm=C3=B8rgrav?= Cc: src-committers , svn-src-all@freebsd.org, svn-src-head@freebsd.org 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: Fri, 12 Oct 2018 11:34:02 -0000 On Fri, Oct 12, 2018 at 12:43 AM Dag-Erling Sm=C3=B8rgrav = wrote: > > Author: des > Date: Fri Oct 12 05:42:38 2018 > New Revision: 339326 > URL: https://svnweb.freebsd.org/changeset/base/339326 > > Log: > Move libssl up in the bootstrap order. > > Submitted by: jkim > Approved by: re (gjb) > > Modified: > head/Makefile.inc1 > > Modified: head/Makefile.inc1 > =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/Makefile.inc1 Fri Oct 12 05:27:58 2018 (r339325) > +++ head/Makefile.inc1 Fri Oct 12 05:42:38 2018 (r339326) > @@ -2534,8 +2534,8 @@ _prebuild_libs=3D ${_kerberos5_lib_libasn1} \ > ${_cddl_lib_libctf} \ > lib/libufs \ > lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/= msun \ > - ${_secure_lib_libcrypto} ${_lib_libldns} \ > - ${_secure_lib_libssh} ${_secure_lib_libssl} > + ${_secure_lib_libcrypto} ${_secure_lib_libssl} \ > + ${_lib_libldns} ${_secure_lib_libssh} > > .if ${MK_GNUCXX} !=3D "no" > _prebuild_libs+=3D gnu/lib/libstdc++ gnu/lib/libsupc++ > _______________________________________________ Hmm... doesn't this kind of situation also require an __L rule down below to prevent the race, since they're both in prebuild_libs? Thanks, Kyle Evans