diff options
author | William Pitcock <nenolod@dereferenced.org> | 2013-09-08 13:44:16 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2013-09-08 13:44:16 +0000 |
commit | 3c63a76305217448089aa40841e3e16def97a494 (patch) | |
tree | fb78a4f18549b1176da86f6cd3e62217995eddb5 /main/xen/APKBUILD | |
parent | 12e4869ec50f6b79188f971e1908441b3ae8ad4c (diff) | |
download | aports-3c63a76305217448089aa40841e3e16def97a494.tar.bz2 aports-3c63a76305217448089aa40841e3e16def97a494.tar.xz |
main/xen: catch errors from individual build steps
Diffstat (limited to 'main/xen/APKBUILD')
-rw-r--r-- | main/xen/APKBUILD | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/main/xen/APKBUILD b/main/xen/APKBUILD index 468deee1f8..fb4d18c9d8 100644 --- a/main/xen/APKBUILD +++ b/main/xen/APKBUILD @@ -120,11 +120,11 @@ build_stubdom() { build() { cd "$_builddir" - configure - build_hypervisor - build_tools - build_docs - build_stubdom + configure || return 1 + build_hypervisor || return 1 + build_tools || return 1 + build_docs || return 1 + build_stubdom || return 1 } package() { |