diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-10-03 12:03:08 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-10-03 12:06:13 +0000 |
commit | 4e455979e07c0ff0b73ee3b305d1b42e0316528f (patch) | |
tree | 6ec63d267623073c99b93d5f8bf9d145a7753ea5 /abuild.in | |
parent | def219994d2dff3c2bd47eee76826dc79e042b2f (diff) | |
download | abuild-4e455979e07c0ff0b73ee3b305d1b42e0316528f.tar.gz abuild-4e455979e07c0ff0b73ee3b305d1b42e0316528f.tar.bz2 abuild-4e455979e07c0ff0b73ee3b305d1b42e0316528f.tar.xz abuild-4e455979e07c0ff0b73ee3b305d1b42e0316528f.zip |
abuild: fix regression. run build
fix regression introduced in def219994d2dff3c2bd47eee76826dc79e042b2f
Diffstat (limited to 'abuild.in')
-rw-r--r-- | abuild.in | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1521,6 +1521,7 @@ build_abuildrepo() { unpack prepare mkusers + build $_check rootpkg cleanup $CLEANUP @@ -2125,7 +2126,7 @@ rootbld_actions() { if ! want_check; then _check=true fi - for part in symlinksrc unpack prepare $_check rootpkg; do + for part in symlinksrc unpack prepare build $_check rootpkg; do runpart $part done } |