mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2025-01-11 17:29:52 +00:00
abuild: strip versions from dependencies when building recursively
This commit is contained in:
parent
5ca02a21fe
commit
f24e997104
@ -712,7 +712,11 @@ depparse_aports() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
deptrace() {
|
deptrace() {
|
||||||
local deps="$@"
|
local deps= i=
|
||||||
|
# strip versions from deps
|
||||||
|
for i in "$@"; do
|
||||||
|
deps="$deps ${i%[<>=]*}"
|
||||||
|
done
|
||||||
[ -z "$deps" ] && return 0
|
[ -z "$deps" ] && return 0
|
||||||
( depparse_aports
|
( depparse_aports
|
||||||
if [ -z "$upgrade" ]; then
|
if [ -z "$upgrade" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user