svn commit: r339326 - head

Kyle Evans kevans at freebsd.org
Fri Oct 12 11:34:02 UTC 2018


On Fri, Oct 12, 2018 at 12:43 AM Dag-Erling Smørgrav <des at freebsd.org> 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
> ==============================================================================
> --- 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=   ${_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} != "no"
>  _prebuild_libs+= 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


More information about the svn-src-all mailing list