diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2016-12-15 13:31:28 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2016-12-15 13:31:28 +0000 |
commit | 1150cfbca628a5fc82d61b2c26977237d3bd84a7 (patch) | |
tree | 47c50ff2933c3b4149205f4f9f2852727791cdd8 /testing/kimchi | |
parent | 038e655acad1ad927157b96ced8c08d06e6a5a31 (diff) | |
download | aports-1150cfbca628a5fc82d61b2c26977237d3bd84a7.tar.bz2 aports-1150cfbca628a5fc82d61b2c26977237d3bd84a7.tar.xz |
testing/kimchi: fix for parallel build issue
Diffstat (limited to 'testing/kimchi')
-rw-r--r-- | testing/kimchi/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/kimchi/APKBUILD b/testing/kimchi/APKBUILD index d6ee80f3d2..ef065aa3de 100644 --- a/testing/kimchi/APKBUILD +++ b/testing/kimchi/APKBUILD @@ -10,7 +10,7 @@ license="APACHE LGPL2.1" depends="python2 py-ipaddr py2-m2crypto py2-simplejson py-psutil py-imaging py2-libvirt py-cheetah py-ethtool py2-lxml py-websockify py2-pillow qemu py2-configobj py2-six py2-paramiko py2-magic libvirt-daemon -wok gingerbase py-netaddr py2-libuser" +wok gingerbase py2-netaddr py2-libuser" makedepends="automake autoconf libtool gettext-dev python2-dev py-setuptools pyflakes libxslt py2-pip py-pep8 py2-mock py-cherrypy pytest py2-requests @@ -26,7 +26,7 @@ build() { --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var - make || return 1 + make -j1 || return 1 } package() { |