diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2016-11-10 11:37:00 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-11-10 11:37:00 +0000 |
commit | 7e1d57d10bdc0382b6bc5d7e845480e4a4dda36d (patch) | |
tree | 78320b8ab4587ce44b567cd40cc710baf385cb2f /testing | |
parent | 93778f890d16ad820726afceb63d047a95930bdf (diff) | |
download | aports-7e1d57d10bdc0382b6bc5d7e845480e4a4dda36d.tar.bz2 aports-7e1d57d10bdc0382b6bc5d7e845480e4a4dda36d.tar.xz |
testing/zstd: work around parallel build problem
Diffstat (limited to 'testing')
-rw-r--r-- | testing/zstd/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/zstd/APKBUILD b/testing/zstd/APKBUILD index 0a76a67023..3eb2cb7e91 100644 --- a/testing/zstd/APKBUILD +++ b/testing/zstd/APKBUILD @@ -13,7 +13,8 @@ builddir="$srcdir/$pkgname-$pkgver" build() { cd "$builddir" - make libzstd && make + # makefile does not parallelize properly + make -j1 } package() { |