diff options
-rw-r--r-- | main/freeswitch/APKBUILD | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/main/freeswitch/APKBUILD b/main/freeswitch/APKBUILD index 8843b8ce5..56aed8ea7 100644 --- a/main/freeswitch/APKBUILD +++ b/main/freeswitch/APKBUILD @@ -36,6 +36,12 @@ build() { --with-devrandom=/dev/urandom \ || return 1 + # flite does not work with parallel builds + # first build libfreeswitch (in parallel) + make libfreeswitch.la || return 1 + # then we build mod_flite, disabling parallel builds + ( cd src/mod/asr_tts/mod_flite && make -j1 ) || return 1 + # finally we build the rest make all || return 1 } package(){ |