diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-09-22 07:36:32 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-09-22 07:36:32 +0000 |
commit | 1c475fbf7623191587c3c8cca206b596ca925dcf (patch) | |
tree | 47bc2ef6487817c65ff8f28b93c2e89708757bc1 | |
parent | df8d0f17845c931cfe1318e55c9b12b620f1def1 (diff) | |
download | aports-1c475fbf7623191587c3c8cca206b596ca925dcf.tar.bz2 aports-1c475fbf7623191587c3c8cca206b596ca925dcf.tar.xz |
testing/vpopmail: build fix
cannot install stuff in parallell.
-rw-r--r-- | testing/vpopmail/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/vpopmail/APKBUILD b/testing/vpopmail/APKBUILD index 5dc94999f2..3a0e2f75ba 100644 --- a/testing/vpopmail/APKBUILD +++ b/testing/vpopmail/APKBUILD @@ -45,7 +45,7 @@ build() { --disable-roaming-users \ || return 1 make || return 1 - make DESTDIR="$pkgdir" install + make -j1 DESTDIR="$pkgdir" install } |