diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-01-13 09:05:03 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-01-13 09:05:03 +0000 |
commit | b9651051c452e51f959c87e2bbc7402b9f77d43a (patch) | |
tree | 6a493bf013d4d4ed9404919ce2b458a07a50c6c3 | |
parent | e63d0a0f87bf97d1fc7f69ae80f7b534ebbd5588 (diff) | |
download | aports-b9651051c452e51f959c87e2bbc7402b9f77d43a.tar.bz2 aports-b9651051c452e51f959c87e2bbc7402b9f77d43a.tar.xz |
testing/xen: build fix. disable parallell build of hypervisor
-rw-r--r-- | testing/xen/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/xen/APKBUILD b/testing/xen/APKBUILD index 5a8a1974d..30d844d50 100644 --- a/testing/xen/APKBUILD +++ b/testing/xen/APKBUILD @@ -56,7 +56,7 @@ build() { (cd tools/check; ./chk build) || return 1 msg "Building hypervisor..." - make xen || return 1 + make -j1 xen || return 1 msg "Building tools..." make tools || return 1 |