diff options
-rwxr-xr-x | abuild.in | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 } |