summaryrefslogtreecommitdiff
path: root/abuild.in
diff options
context:
space:
mode:
Diffstat (limited to 'abuild.in')
-rw-r--r--abuild.in9
1 files changed, 8 insertions, 1 deletions
diff --git a/abuild.in b/abuild.in
index b833f21..e49e548 100644
--- a/abuild.in
+++ b/abuild.in
@@ -1997,6 +1997,13 @@ checksum() {
echo "sha512sums=\"$sha512sums\"" >>"$APKBUILD"
}
+rootbld_actions() {
+ local part
+ for part in symlinksrc unpack prepare build rootpkg; do
+ runpart $part
+ done
+}
+
rootbld() {
if apk_up2date && [ -z "$force" ]; then
msg "Package is up to date"
@@ -2082,7 +2089,7 @@ rootbld() {
--hostname "build-edge-$CARCH" \
--chdir "$startdir" \
--setenv PATH /bin:/usr/bin:/sbin:/usr/sbin \
- /usr/bin/abuild $force symlinksrc unpack prepare build rootpkg
+ /usr/bin/abuild $force rootbld_actions
update_abuildrepo_index
cleanup $CLEANUP
}