abuild: rootbld: run testsuites if requested, also handle package() only builds
This commit is contained in:
parent
3225884ed3
commit
f7b19c3454
14
abuild.in
14
abuild.in
@ -2074,8 +2074,18 @@ checksum() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
rootbld_actions() {
|
rootbld_actions() {
|
||||||
local part
|
local part _build=build _check=check_fakeroot
|
||||||
for part in symlinksrc unpack prepare build rootpkg; do
|
if ! is_function package; then
|
||||||
|
# if package() is missing then build is called from rootpkg
|
||||||
|
_build=true
|
||||||
|
fi
|
||||||
|
if options_has "!checkroot"; then
|
||||||
|
_check=check
|
||||||
|
fi
|
||||||
|
if ! want_check; then
|
||||||
|
_check=true
|
||||||
|
fi
|
||||||
|
for part in symlinksrc unpack prepare $_build $_check rootpkg; do
|
||||||
runpart $part
|
runpart $part
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user