diff options
author | Timo Teräs <timo.teras@iki.fi> | 2013-10-15 08:11:30 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2013-10-15 08:11:51 +0000 |
commit | 2e45133d0c426bb80b55ad54bb934d2825b75b69 (patch) | |
tree | b4eac57a1b6c6f810a705c41544cbe0fdb754449 | |
parent | 5793c8d73787b4e03ee0abcbbe95e55429b8b749 (diff) | |
download | aports-2e45133d0c426bb80b55ad54bb934d2825b75b69.tar.bz2 aports-2e45133d0c426bb80b55ad54bb934d2825b75b69.tar.xz |
main/midori: build fix for number of jobs
use JOBS for the number. MAKEFLAGS can and do contain more than
just -j on builders.
-rw-r--r-- | main/midori/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/midori/APKBUILD b/main/midori/APKBUILD index 8a237c893b..2b6b73234d 100644 --- a/main/midori/APKBUILD +++ b/main/midori/APKBUILD @@ -37,7 +37,7 @@ build() { ./configure \ --build=$CBUILD \ --prefix=/usr \ - --jobs=${MAKEFLAGS/-j/} \ + --jobs=${JOBS:-2} \ --disable-zeitgeist \ --enable-addons \ --enable-unique \ |