diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-07 09:48:06 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-07 09:48:06 +0000 |
commit | 8d59a683e1c4b3992236914ca7f604d1ab54cac9 (patch) | |
tree | 949d3240432bd374fd845d418923b002600fec18 /testing | |
parent | a2fee8c5c4cd191099df7fc2e48fa8393e80995b (diff) | |
download | aports-8d59a683e1c4b3992236914ca7f604d1ab54cac9.tar.bz2 aports-8d59a683e1c4b3992236914ca7f604d1ab54cac9.tar.xz |
testing/kamailio: build fix
try work around paralell build issue?
Diffstat (limited to 'testing')
-rw-r--r-- | testing/kamailio/APKBUILD | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/testing/kamailio/APKBUILD b/testing/kamailio/APKBUILD index ba63dfe0dc..fe066f4663 100644 --- a/testing/kamailio/APKBUILD +++ b/testing/kamailio/APKBUILD @@ -63,7 +63,11 @@ prepare() { build() { cd "$_builddir" - make LOCALBASE=/usr \ + + # workaround parallel build issue + make -C lib/kcore strcommon.o || return 1 + + make LOCALBASE=/usr \ cfg_target=/etc/kamailio/ \ MODS_MYSQL=yes \ MODS_PCRE=yes \ |