From patchwork Thu Dec 20 14:16:31 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Porcedda X-Patchwork-Id: 207666 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id B83BA2C009B for ; Fri, 21 Dec 2012 01:16:42 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id F37198296A; Thu, 20 Dec 2012 14:16:39 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DmxHwGvwlbQQ; Thu, 20 Dec 2012 14:16:39 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 6124481D53; Thu, 20 Dec 2012 14:16:38 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id D94998F75B for ; Thu, 20 Dec 2012 14:16:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 3CB792CE9D for ; Thu, 20 Dec 2012 14:16:37 +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 KhRdD44m54dH for ; Thu, 20 Dec 2012 14:16:36 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ee0-f42.google.com (mail-ee0-f42.google.com [74.125.83.42]) by silver.osuosl.org (Postfix) with ESMTPS id 8B4E5201D7 for ; Thu, 20 Dec 2012 14:16:36 +0000 (UTC) Received: by mail-ee0-f42.google.com with SMTP id c41so1742209eek.15 for ; Thu, 20 Dec 2012 06:16:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:subject:date:message-id:x-mailer; bh=8HcdwJ7wx7hzpDytI1RC81dQYesZz8IxCljiNMF2Ojw=; b=YDpP77mm/CXJ7tTOUUm90Hq/Sj+gx/3HxXyp8gddIT3Rnv+1ssZbPii9c4AUDvjYEJ YPuNB9dlhZ/Dd+1qr9QscWWifIbBhjHTpWkG/J2yRXZCRs61ql40APvb0Y4H6C7vNm0o sX9pt0ecn1ntuzYn8aInNcXLp0hHft6S/uNMa70n/3Elb5CfKaRJjk0rjwN8qiae4LPz 8Ula3TfU7j/JSvYCA+yPQXSd1Y5DCD+aJWMB0uZmb46LyraqQzfiwEj2ZC4acfVnx/Ye qdvh9AqHSni+U9dWCGAeamZVSf+te6OD81lr9zrp+bWveIDbyGOS8KYoIR58/vZN8AKL al9Q== X-Received: by 10.14.221.9 with SMTP id q9mr23925127eep.3.1356012994747; Thu, 20 Dec 2012 06:16:34 -0800 (PST) Received: from ld2036.tmt.telital.com ([213.205.6.118]) by mx.google.com with ESMTPS id b2sm15601367eep.9.2012.12.20.06.16.33 (version=SSLv3 cipher=OTHER); Thu, 20 Dec 2012 06:16:33 -0800 (PST) From: Fabio Porcedda To: buildroot@uclibc.org Date: Thu, 20 Dec 2012 15:16:31 +0100 Message-Id: <1356012991-32494-1-git-send-email-fabio.porcedda@gmail.com> X-Mailer: git-send-email 1.8.0 Subject: [Buildroot] [PATCH] Makefile: fix cross target 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 cross target was laking some dependency. Now it's possible to successfully use the target right after the configuration. Signed-off-by: Fabio Porcedda --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4b09437..e163227 100644 --- a/Makefile +++ b/Makefile @@ -697,7 +697,7 @@ ifeq ($(O),output) endif rm -rf $(CONFIG_DIR)/.config $(CONFIG_DIR)/.config.old $(CONFIG_DIR)/.auto.deps -cross: $(BASE_TARGETS) +cross: prepare dirs dependencies $(BASE_TARGETS) help: @echo 'Cleaning:'