diff options
Diffstat (limited to 'abuild.in')
-rw-r--r-- | abuild.in | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1401,7 +1401,7 @@ create_apks() { } build_abuildrepo() { - local d apk _build=build _check=check + local d apk _build=build _check=check_fakeroot if ! is_function package; then # if package() is missing then build is called from rootpkg _build=true @@ -1626,6 +1626,13 @@ do_fakeroot() { fi } +# wrap check() with fakeroot +check_fakeroot() { + cd "$startdir" + [ -n "$FAKEROOT" ] && msg "Entering fakeroot..." + do_fakeroot "$abuild_path" $color_opt $keep_build check +} + # build and package in fakeroot rootpkg() { local _package=package |