diff options
author | Phil Sutter <phil@nwl.cc> | 2009-08-28 22:56:27 +0200 |
---|---|---|
committer | Phil Sutter <phil@nwl.cc> | 2009-08-28 23:09:28 +0200 |
commit | 6d3405b4161a9cf5f1e16ebeb8426dadb48dbe71 (patch) | |
tree | 7f637675bd8b2a1c1fe5f77614a3b0ef2bfc6ef5 /package/net-snmp | |
parent | 0b6742af9d19cc389ed0f0bb08a65e1f84268893 (diff) |
core: allow selecting parallel builds
The value of CONFIG_ADK_MAKE_JOBS is being passed to make via the option
'-j', in order to have it run multiple jobs simultaneously. This is done
for all kernel builds, and per default for each package using the
default BUILD_STYLE of 'auto', unless the package makefile defines
PKG_NOPARALLEL to a non-empty string.
Diffstat (limited to 'package/net-snmp')
-rw-r--r-- | package/net-snmp/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/net-snmp/Makefile b/package/net-snmp/Makefile index 9fb44be22..c78efadcf 100644 --- a/package/net-snmp/Makefile +++ b/package/net-snmp/Makefile @@ -10,6 +10,7 @@ PKG_MD5SUM:= 984932520143f0c8bf7b7ce1fc9e1da1 PKG_DESCR:= SNMP Agent PKG_SECTION:= net PKG_DEPENDS:= libnetsnmp libelf +PKG_NOPARALLEL:= 1 PKG_URL:= http://www.net-snmp.org PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=net-snmp/} |