diff options
author | mb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-09-07 10:00:34 +0000 |
---|---|---|
committer | mb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-09-07 10:00:34 +0000 |
commit | e8a4e0d67c875d45d4afd9b22a884d1ebd32d410 (patch) | |
tree | 5dadc86ab8f196d7ee7d84f83407b28befc254cf /package/dropbear | |
parent | 0c43584a88dfa1ef89a2dc52c380bf218281f57f (diff) |
From: Joseph Roback <openwrt-devel@roback.cc>
26 Makefile patches for enabling parallel builds. Tested on Linux (8-core) and Darwin (12-core), individually and from clean build_root. The first set is from trunk, the second is from feeds/packages.
Signed-off-by: Joe Roback <joe@roback.cc>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22965 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/dropbear')
-rw-r--r-- | package/dropbear/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package/dropbear/Makefile b/package/dropbear/Makefile index 77d6d9707..6fad27366 100644 --- a/package/dropbear/Makefile +++ b/package/dropbear/Makefile @@ -17,6 +17,8 @@ PKG_SOURCE_URL:= \ http://www.mirrors.wiretapped.net/security/cryptography/apps/ssh/dropbear/ PKG_MD5SUM:=1c69ec674481d7745452f68f2ea5597e +PKG_BUILD_PARALLEL:=1 + include $(INCLUDE_DIR)/package.mk define Package/dropbear/Default @@ -70,12 +72,12 @@ define Build/Configure endef define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) \ + $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \ $(TARGET_CONFIGURE_OPTS) \ LD="$(TARGET_CC)" \ PROGRAMS="dropbear dbclient dropbearkey scp" \ MULTI=1 SCPPROGRESS=1 - $(MAKE) -C $(PKG_BUILD_DIR) \ + $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \ $(TARGET_CONFIGURE_OPTS) \ LD="$(TARGET_CC)" \ PROGRAMS="dropbearconvert" |