From patchwork Thu May 16 08:46:04 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Danomi Manchego X-Patchwork-Id: 244251 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 5033C2C00A7 for ; Thu, 16 May 2013 18:46:33 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id AED83A035C; Thu, 16 May 2013 08:46:29 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VW2dfOzcD0Ir; Thu, 16 May 2013 08:46:28 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 5F061A0358; Thu, 16 May 2013 08:46:28 +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 887C58F79A for ; Thu, 16 May 2013 08:46:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 3B8CB31D30 for ; Thu, 16 May 2013 08:46:29 +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 NjncWf1LjToK for ; Thu, 16 May 2013 08:46:28 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from qmta03.westchester.pa.mail.comcast.net (qmta03.westchester.pa.mail.comcast.net [76.96.62.32]) by silver.osuosl.org (Postfix) with ESMTP id 5AC9D31D2F for ; Thu, 16 May 2013 08:46:28 +0000 (UTC) Received: from omta09.westchester.pa.mail.comcast.net ([76.96.62.20]) by qmta03.westchester.pa.mail.comcast.net with comcast id cYiS1l0030SCNGk53YmTFD; Thu, 16 May 2013 08:46:27 +0000 Received: from localhost.localdomain ([68.37.48.40]) by omta09.westchester.pa.mail.comcast.net with comcast id cYm81l00B0s1VyU3VYmTir; Thu, 16 May 2013 08:46:27 +0000 From: Danomi Manchego To: buildroot@uclibc.org Date: Thu, 16 May 2013 04:46:04 -0400 Message-Id: <1368693964-5410-1-git-send-email-danomimanchego123@gmail.com> X-Mailer: git-send-email 1.7.9.5 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20121106; t=1368693987; bh=tioGYNgIJGDkjTb+3azeKzjtTKiVJkEb6yHCDooF7nE=; h=Received:Received:From:To:Subject:Date:Message-Id; b=HRJI/fSsG8o60NeC9NcMUjRdl05Kakqi5gZV5FyedjlC0rRoTnSet9EJkf3X3Ry2u fNTmcKNzZ5QpxoRDB5NksKsYM4KARQn5Aw1s4c+Vr9V8mtCOH4ioOEEPBWCGV7Qk05 Etz/Qrz8mAJ4KF9HmY5prIhgRCETWTAPe1KEn34qIWcAkOcIlxFCG11J2MM7yexc85 gEMYPxqJeiZme/9QkxvgRJC1khMHk22ShYNaz6jDU3twb4dicUkxvdx7an1jKSt4Bb IOdKM3SdCgN9VHCjTvTaD4OeKVtbWyzQvti3uB1BX17V5QxIGEijZ88EQCnlvmEAjT HbMbRdEkaNNog== Subject: [Buildroot] [PATCH] graph-depends: ignore the 'target-purgelocales' target (v2) 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 Otherwise, graph-depends tries to call 'make target-purgelocales-show-depends', which does not exist, as 'target-purgelocales' is not an actual package. Signed-off-by: Danomi Manchego --- v2: Fix misspelling in commit log --- support/scripts/graph-depends | 1 + 1 file changed, 1 insertion(+) diff --git a/support/scripts/graph-depends b/support/scripts/graph-depends index 790e24e..50b8670 100755 --- a/support/scripts/graph-depends +++ b/support/scripts/graph-depends @@ -170,6 +170,7 @@ TARGET_EXCEPTIONS = [ "target-generic-hostname", "target-root-passwd", "target-post-image", + "target-purgelocales", ] # In full mode, start with the result of get_targets() to get the main