mirror of
https://gitlab.alpinelinux.org/alpine/abuild.git
synced 2025-02-20 21:46:57 +00:00
abuild: upgrade dependencies when building recursive
This commit is contained in:
parent
e58a533440
commit
501e5dc8c4
@ -709,7 +709,7 @@ builddeps() {
|
||||
&& return 0
|
||||
|
||||
uninstall_after=".makedepends-$pkgname $uninstall_after"
|
||||
if [ -n "$install_deps" ]; then
|
||||
if [ -n "$install_deps" ] && [ -z "$recursive" ]; then
|
||||
$SUDO apk add --repo "$apkcache" \
|
||||
--virtual .makedepends-$pkgname $deps \
|
||||
&& return 0
|
||||
@ -724,7 +724,7 @@ builddeps() {
|
||||
msg "Entering $dir"
|
||||
cd "$dir" && $0 -k -r apkcache || return 1
|
||||
done
|
||||
$SUDO apk add --repo "$apkcache" \
|
||||
$SUDO apk add --repo -u "$apkcache" \
|
||||
--virtual .makedepends-$pkgname $deps
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user