diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-07 19:56:12 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-01-07 19:56:12 +0000 |
commit | 95886293997ca67798c69af76376e7e521260cd2 (patch) | |
tree | a3be8870f7ead41411735b9057888167de899dc6 /abuild.conf | |
parent | 2b9d261df5a764cc95af153dbd7050fca8158cd4 (diff) | |
download | abuild-95886293997ca67798c69af76376e7e521260cd2.tar.bz2 abuild-95886293997ca67798c69af76376e7e521260cd2.tar.xz |
abuild.conf: added JOBS variable
makes it easier to support parallel builds on non gnu make system
Diffstat (limited to 'abuild.conf')
-rw-r--r-- | abuild.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/abuild.conf b/abuild.conf index f541085..315f3b5 100644 --- a/abuild.conf +++ b/abuild.conf @@ -6,7 +6,8 @@ export LDFLAGS="-Wl,--as-needed" export PATH=:/usr/i386-gentoo-linux-uclibc/binutils-bin/2.18:$PATH -export MAKEFLAGS=-j2 +export JOBS=2 +export MAKEFLAGS=-j$JOBS # remove line below to disable colors USE_COLORS=1 |