diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-03-01 14:22:42 -0600 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2018-03-05 23:55:12 +0000 |
commit | 7d24b8ffd44694490c1e75e0e1f18b3ab389f146 (patch) | |
tree | e92dee5e1b5778d1751ffa804e60c66669a71dbd /main/apr | |
parent | 2c94dc11195a40512cddc5d83b714a1578590706 (diff) | |
download | aports-7d24b8ffd44694490c1e75e0e1f18b3ab389f146.tar.bz2 aports-7d24b8ffd44694490c1e75e0e1f18b3ab389f146.tar.xz |
main/apr: use -j1 for check() to avoid race
Diffstat (limited to 'main/apr')
-rw-r--r-- | main/apr/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/apr/APKBUILD b/main/apr/APKBUILD index cd37593f02..5932f64ae2 100644 --- a/main/apr/APKBUILD +++ b/main/apr/APKBUILD @@ -28,7 +28,7 @@ build() { check() { cd "$builddir" - make check + make -j1 check } package() { |