From patchwork Thu May 16 08:34:03 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Danomi Manchego X-Patchwork-Id: 244242 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 EAD662C007C for ; Thu, 16 May 2013 18:34:47 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 91AD8A035A; Thu, 16 May 2013 08:34:43 +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 ZNYjqHRsCyXU; Thu, 16 May 2013 08:34:41 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 7358CA0350; Thu, 16 May 2013 08:34:41 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id C39918F7A0 for ; Thu, 16 May 2013 08:34:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 5E2768D523 for ; Thu, 16 May 2013 08:34:41 +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 NOpGPBwbpfEH for ; Thu, 16 May 2013 08:34:40 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from qmta02.westchester.pa.mail.comcast.net (qmta02.westchester.pa.mail.comcast.net [76.96.62.24]) by whitealder.osuosl.org (Postfix) with ESMTP id 394388D503 for ; Thu, 16 May 2013 08:34:40 +0000 (UTC) Received: from omta03.westchester.pa.mail.comcast.net ([76.96.62.27]) by qmta02.westchester.pa.mail.comcast.net with comcast id cYY51l0010bG4ec51YafZ0; Thu, 16 May 2013 08:34:39 +0000 Received: from localhost.localdomain ([68.37.48.40]) by omta03.westchester.pa.mail.comcast.net with comcast id cYa71l00U0s1VyU3PYafqX; Thu, 16 May 2013 08:34:39 +0000 From: Danomi Manchego To: buildroot@uclibc.org Date: Thu, 16 May 2013 04:34:03 -0400 Message-Id: <1368693243-4774-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=1368693279; bh=5jEii/0YMPSJTtgSvzMrWgH8EhTA4WIH2VGZQT7R7p8=; h=Received:Received:From:To:Subject:Date:Message-Id; b=jG9vaMRL08MqJTFh/yU2CO/lbS0Ri/qhktzYvEtvdKpy16/q3fhKsnHdZv+GzsZXw W+laGqpYiGAWVVWAJcQVA+iwF7wMuncsrR6Z2zQKv9/UzMCp3TPZaLHXjaiaXHuNb7 czcy8OWSJp11pPqzEthu907TgesHdcdAeoWE8eZFQgpUK4f4UENSeU2cveMe1fNDbe R6htqMbD4pMAfVApkYdEb8t3SLnCkKU5MNrm80E5wytpw952YLqQgEIXNSl2KFFviy bgFY1SATEUzS3NH6NGIHHVRMJLGCDe2oDj2Jn+VIbsnyHpW7wmjH7oeNOLv/zCm8p5 boF4clzpRfy9A== Subject: [Buildroot] [PATCH] graph-depends: ignore the 'target-purgelocales' 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 Otherwsie, 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 --- 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