diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-12-16 15:26:28 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-12-16 15:26:28 +0000 |
commit | bf3fe70803cf272d96434bb28133783dacb09145 (patch) | |
tree | 0b59a5e8051b553b4fefa13c2828cba4aefb3094 /main/e2fsprogs/APKBUILD | |
parent | 58383c240bc40bdf0543a8383e015d0604dfccca (diff) | |
download | aports-bf3fe70803cf272d96434bb28133783dacb09145.tar.bz2 aports-bf3fe70803cf272d96434bb28133783dacb09145.tar.xz |
main/e2fsprogs: parallell build fix
Diffstat (limited to 'main/e2fsprogs/APKBUILD')
-rw-r--r-- | main/e2fsprogs/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/e2fsprogs/APKBUILD b/main/e2fsprogs/APKBUILD index b8c3895a1b..56d4938189 100644 --- a/main/e2fsprogs/APKBUILD +++ b/main/e2fsprogs/APKBUILD @@ -36,7 +36,7 @@ build () { package() { cd "$_builddir" - make LDCONFIG=: DESTDIR="${pkgdir}" install install-libs || return 1 + make -j1 LDCONFIG=: DESTDIR="${pkgdir}" install install-libs || return 1 } libcom_err() { |