packages: fix parallel build by adding + for every make command that passes the jobserver

git-svn-id: svn://svn.openwrt.org/openwrt/packages@33524 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2012-09-23 09:58:24 +00:00
parent 403a026e8f
commit ca74ca9b86
24 changed files with 35 additions and 35 deletions

View File

@ -463,9 +463,9 @@ define Host/Configure
endef
define Host/Compile
$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) \
+$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) \
python Parser/pgen
$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) \
+$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) \
HOSTPYTHON=$(HOST_BUILD_DIR)/python \
sharedmods
endef