Skip to content

Commit bcde678

Browse files
committed
build_packages: Break a new dep loop
Signed-off-by: Krzesimir Nowak <knowak@microsoft.com>
1 parent 46b966c commit bcde678

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build_packages

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,12 +267,16 @@ if [[ "${FLAGS_usepkgonly}" -eq "${FLAGS_FALSE}" ]]; then
267267
# lvm2[systemd] -> systemd[cryptsetup] -> cryptsetup -> lvm2
268268
# systemd[cryptsetup] -> cryptsetup[udev] -> virtual/udev -> systemd
269269
# curl[http2] -> nghttp2[systemd] -> systemd[curl] -> curl
270+
# sys-libs/pam[systemd] -> sys-apps/system[pam] -> sys-libs/pam
271+
# not dropping pam from sys-apps/systemd, otherwise we would need
272+
# to drop pam from sys-auth/pambase
270273
break_dep_loop sys-apps/util-linux udev,systemd,cryptsetup \
271274
sys-fs/cryptsetup udev \
272275
sys-fs/lvm2 udev,systemd \
273276
sys-apps/systemd cryptsetup,tpm \
274277
net-misc/curl http2 \
275-
net-libs/nghttp2 systemd
278+
net-libs/nghttp2 systemd \
279+
sys-libs/pam systemd
276280
fi
277281

278282
if [[ "${FLAGS_only_resolve_circular_deps}" -eq "${FLAGS_TRUE}" ]]; then

0 commit comments

Comments
 (0)