Hi,

On 28 October 2013 03:45, Daniel Schwierzeck
<daniel.schwierz...@gmail.com> wrote:
> Signed-off-by: Daniel Schwierzeck <daniel.schwierz...@gmail.com>
> ---
>  package/boot/uboot-lantiq/Makefile | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/package/boot/uboot-lantiq/Makefile 
> b/package/boot/uboot-lantiq/Makefile
> index a3e9805..40d1ae2 100644
> --- a/package/boot/uboot-lantiq/Makefile
> +++ b/package/boot/uboot-lantiq/Makefile
> @@ -17,6 +17,8 @@ PKG_SOURCE_URL:=ftp://ftp.denx.de/pub/u-boot
>  PKG_MD5SUM:=a076a044b64371edc52f7e562b13f6b2
>  PKG_TARGETS:=bin
>
> +PKG_BUILD_PARALLEL:=1
> +
>  FIRMWARE_LANTIQ_SOURCE:=$(TOPDIR)/target/linux/lantiq/files/firmware/lantiq
>
>  include $(INCLUDE_DIR)/package.mk
> @@ -98,11 +100,11 @@ define Build/Prepare
>  endef
>
>  define Build/Configure
> -       $(MAKE) -C $(PKG_BUILD_DIR) $(BUILD_VARIANT)_config
> +       +$(MAKE) -C $(PKG_BUILD_DIR) $(BUILD_VARIANT)_config

Plus character `+` in front of a rule line has the same effect as
`$(MAKE)`. So this change is not necessary. The same goes below.

>  endef
>
>  define Build/Compile
> -       $(MAKE) -C $(PKG_BUILD_DIR) CROSS_COMPILE=$(TARGET_CROSS)
> +       +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) CROSS_COMPILE=$(TARGET_CROSS)
>  endef
>
>  define Package/uboot/install/default
> --
> 1.8.3.2
> _______________________________________________
> openwrt-devel mailing list
> openwrt-devel@lists.openwrt.org
> https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Reply via email to