summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--makechrootpkg.in9
1 files changed, 1 insertions, 8 deletions
diff --git a/makechrootpkg.in b/makechrootpkg.in
index ce47b93..2407115 100644
--- a/makechrootpkg.in
+++ b/makechrootpkg.in
@@ -232,15 +232,8 @@ _chrootbuild() {
sudo --preserve-env=SOURCE_DATE_EPOCH -iu builduser bash -c 'cd /startdir; makepkg "$@"' -bash "$@"
ret=$?
case $ret in
- 0)
+ 0|14)
return 0;;
- 14)
- # whitelist "The package failed to install." but only if there are multiple split packages
- # in which case they might be conflicting
- local pkgfiles=(/pkgdest/*.pkg.tar.xz)
- (( ${#pkgfiles[@]} > 1))
- return $?;;
-
*)
return $ret;;
esac