build: add the + token to any commands that can pass through the jobserver, fixes parallel build on some systems

SVN-Revision: 33523
This commit is contained in:
Felix Fietkau
2012-09-23 09:50:01 +00:00
parent 5c88d907c8
commit ed2bf29be5
20 changed files with 23 additions and 22 deletions

View File

@@ -77,7 +77,7 @@ define Host/Configure
endef
define Host/Compile
$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) all
+$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) all
endef
define Host/Install

View File

@@ -47,7 +47,7 @@ define Host/Configure
endef
define Host/Compile
$(GCC_MAKE) $(HOST_JOBS) -C $(GCC_BUILD_DIR) all
+$(GCC_MAKE) $(HOST_JOBS) -C $(GCC_BUILD_DIR) all
endef
define SetupExtraArch

View File

@@ -11,7 +11,7 @@ GCC_CONFIGURE += \
define Host/Compile
$(CP) $(BUILD_DIR_TOOLCHAIN)/linux-dev/* $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/
$(GCC_MAKE) $(HOST_JOBS) -C $(GCC_BUILD_DIR) \
+$(GCC_MAKE) $(HOST_JOBS) -C $(GCC_BUILD_DIR) \
all-build-libiberty \
all-gcc \
$(if $(GCC_BUILD_TARGET_LIBGCC),all-target-libgcc)

View File

@@ -30,7 +30,7 @@ define Host/Prepare
endef
define Host/Compile
$(GCC_MAKE) $(HOST_JOBS) -C $(GCC_BUILD_DIR) all-gcc all-target-libgcc
+$(GCC_MAKE) $(HOST_JOBS) -C $(GCC_BUILD_DIR) all-gcc all-target-libgcc
endef
define Host/Install