Skip to content

Commit 59e23c8

Browse files
committedFeb 23, 2025
fix(spiral): ignore PKGPROV entry duplicates with PKGNAME
1 parent 346c2aa commit 59e23c8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎proc/53-spiral.sh

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ if bool "$ABSPIRAL"; then
77
if [[ "${#__AB_SONAMES[@]}" != 0 ]]; then
88
abspiral_from_sonames "${__AB_SONAMES[@]}"
99
for SPIRAL_PROV in "${__ABSPIRAL_PROVIDES_SONAMES[@]}"; do
10+
if [[ "${SPIRAL_PROV%%:*}" = "$PKGNAME" ]]; then
11+
continue
12+
fi
1013
__ABSPIRAL_PROVIDES+=("${SPIRAL_PROV}")
1114
done
1215
fi

0 commit comments

Comments
 (0)