From 5bcbff46f93db550563e04f1d5ee503558ac51d8 Mon Sep 17 00:00:00 2001 From: Luka Perkov Date: Mon, 11 May 2015 11:24:55 +0200 Subject: [PATCH] squid: fix parallel builds Signed-off-by: Luka Perkov --- net/squid/Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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