From: Luka Perkov Date: Mon, 11 May 2015 09:24:55 +0000 (+0200) Subject: squid: fix parallel builds X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=5bcbff46f93db550563e04f1d5ee503558ac51d8;p=openwrt-packages.git squid: fix parallel builds Signed-off-by: Luka Perkov --- diff --git a/net/squid/Makefile b/net/squid/Makefile index aeab76570..da43127c4 100644 --- a/net/squid/Makefile +++ b/net/squid/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=squid PKG_VERSION:=3.5.2 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_LICENSE:=GPL-2.0 PKG_MAINTAINER:=Luka Perkov @@ -96,9 +96,8 @@ CONFIGURE_VARS += \ ac_cv_epoll_works=yes \ define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR)/lib \ - all - $(MAKE) -C $(PKG_BUILD_DIR) \ + +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR)/lib all + +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \ DESTDIR="$(PKG_INSTALL_DIR)" \ install endef