Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Dec 2023 20:06:17 GMT
From:      Dag-Erling =?utf-8?Q?Sm=C3=B8rgrav?= <des@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: fd5db125e7fc - stable/13 - Fix prebuild race between libpam and libtacplus.
Message-ID:  <202312132006.3BDK6HQO086866@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by des:

URL: https://cgit.FreeBSD.org/src/commit/?id=fd5db125e7fc3d687e713b8993146eb148c5be2b

commit fd5db125e7fc3d687e713b8993146eb148c5be2b
Author:     Dag-Erling Smørgrav <des@FreeBSD.org>
AuthorDate: 2023-06-21 20:58:54 +0000
Commit:     Dag-Erling Smørgrav <des@FreeBSD.org>
CommitDate: 2023-12-13 16:08:13 +0000

    Fix prebuild race between libpam and libtacplus.
    
    Fixes:          21850106fdda
    MFC after:      1 week
    Sponsored by:   Klara, Inc.
    Reviewed by:    kevans, emaste
    Differential Revision:  https://reviews.freebsd.org/D40702
    
    (cherry picked from commit bd9049eeff458fc7ee256a891ba285519c6ce550)
---
 Makefile.inc1 | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile.inc1 b/Makefile.inc1
index 423c5924d39c..42707c3ccfbc 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -3050,7 +3050,8 @@ _generic_libs+= ${_DIR}
 .endif
 .endfor
 
-lib/libopie__L lib/libtacplus__L: lib/libmd__L
+lib/libopie__L: lib/libmd__L
+lib/libtacplus__L: lib/libmd__L lib/libpam/libpam__L
 
 .if ${MK_CDDL} != "no"
 _cddl_lib_libumem= cddl/lib/libumem



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202312132006.3BDK6HQO086866>