From patchwork Fri Apr 18 13:07:31 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Porcedda X-Patchwork-Id: 340296 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 9DE481400EC for ; Fri, 18 Apr 2014 23:07:40 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 13A9330C48; Fri, 18 Apr 2014 13:07:39 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GUPxU8Mnqd6p; Fri, 18 Apr 2014 13:07:38 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id D2F7C32E37; Fri, 18 Apr 2014 13:07:37 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id CBF351C2098 for ; Fri, 18 Apr 2014 13:07:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id C8E2E980E5 for ; Fri, 18 Apr 2014 13:07:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Mt03i8Q9PDMk for ; Fri, 18 Apr 2014 13:07:36 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pa0-f53.google.com (mail-pa0-f53.google.com [209.85.220.53]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 65E3398054 for ; Fri, 18 Apr 2014 13:07:36 +0000 (UTC) Received: by mail-pa0-f53.google.com with SMTP id ld10so1455496pab.12 for ; Fri, 18 Apr 2014 06:07:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=eJ+YKwB3zCfvsnxQ0cmRV1GoLC6uAYZWNc3syBGgi1w=; b=qPjS3edXiB8FkQpahnVntsDxGWzJjXjR43UBOmnkRaHz3UCHVVO8d38ttP2dKjNS+e tT6x+xx7ZNM++CamtcPpMx0VbUFGVnY8vbCWTyzMuQ/ZBAhHoq7wCxfFnQzy/N6WLWuj lxFXQBxKSteXgCra3EFI1kXO5aC4BTsEV1k8q6e/YoUDqzqM9Tp3vsrmqsK51NL33Y3H WbmSI54xFE4gEf7nteCLKNjh0xamTp5k7zc+Zbx0+cChmKSaRM/LOMSt3azTE3N76sco Uy9YaPG4+rGeWVM1QhHpen3vl+0vMchXTJI4NyAsVg1urry5SrZx7ukslNx1/syDjoab eKOg== X-Received: by 10.68.102.34 with SMTP id fl2mr22068904pbb.2.1397826456021; Fri, 18 Apr 2014 06:07:36 -0700 (PDT) Received: from ld2077.tmt.telital.com ([213.205.6.118]) by mx.google.com with ESMTPSA id hw8sm59818779pbc.62.2014.04.18.06.07.34 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 18 Apr 2014 06:07:35 -0700 (PDT) From: Fabio Porcedda To: buildroot@uclibc.org Date: Fri, 18 Apr 2014 15:07:31 +0200 Message-Id: <1397826452-30281-1-git-send-email-fabio.porcedda@gmail.com> X-Mailer: git-send-email 1.8.3.2 Subject: [Buildroot] [PATCH 1/2] Makefile: toolchain-eclipse-register: add toolchain dependency X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net The "toolchain-eclipse-register" target needs the toolchain so add toolchain as a dependency. This also fix the support to top-level parallel make. Signed-off-by: Fabio Porcedda --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 42adf7c..53282ae 100644 --- a/Makefile +++ b/Makefile @@ -621,7 +621,7 @@ target-post-image: $(TARGETS_ROOTFS) target-finalize $(call MESSAGE,"Executing post-image script $(s)"); \ $(EXTRA_ENV) $(s) $(BINARIES_DIR) $(call qstrip,$(BR2_ROOTFS_POST_SCRIPT_ARGS))$(sep)) -toolchain-eclipse-register: +toolchain-eclipse-register: toolchain ./support/scripts/eclipse-register-toolchain `readlink -f $(O)` $(notdir $(TARGET_CROSS)) $(BR2_ARCH) source: $(TARGETS_SOURCE) $(HOST_SOURCE)