From patchwork Tue Mar 5 18:59:21 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 225164 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 CDE172C02F5 for ; Wed, 6 Mar 2013 05:59:46 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id E4F62A00F7; Tue, 5 Mar 2013 18:59:45 +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 htHJ37WQx-cJ; Tue, 5 Mar 2013 18:59:40 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id B9E2EA0022; Tue, 5 Mar 2013 18:59:40 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 2E47B8F75E for ; Tue, 5 Mar 2013 18:59:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id C397FA787E for ; Tue, 5 Mar 2013 18:59:38 +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 I1tAR24E9PJ5 for ; Tue, 5 Mar 2013 18:59:36 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (mail.free-electrons.com [94.23.35.102]) by hemlock.osuosl.org (Postfix) with ESMTP id 8F617A006C for ; Tue, 5 Mar 2013 18:59:36 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 8041182E; Tue, 5 Mar 2013 19:59:35 +0100 (CET) Received: from localhost (unknown [37.161.102.233]) by mail.free-electrons.com (Postfix) with ESMTPSA id B4E6B834 for ; Tue, 5 Mar 2013 19:59:24 +0100 (CET) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Tue, 5 Mar 2013 19:59:21 +0100 Message-Id: <1362509961-27574-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.7.9.5 Subject: [Buildroot] [PATCH] graph-depends: ignore the 'target-post-image' 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 Since the introduction of the post-image mechanism, the graph-depends script is broken: it tries to call 'make target-post-image-show-depends', which doesn't exist since 'target-post-image' is not a package. So we should simply ignore this 'target-post-image'. Signed-off-by: Thomas Petazzoni --- support/scripts/graph-depends | 1 + 1 file changed, 1 insertion(+) diff --git a/support/scripts/graph-depends b/support/scripts/graph-depends index 1163d79..180c81d 100755 --- a/support/scripts/graph-depends +++ b/support/scripts/graph-depends @@ -168,6 +168,7 @@ TARGET_EXCEPTIONS = [ "erase-fakeroots", "target-generic-hostname", "target-root-passwd", + "target-post-image", ] # In full mode, start with the result of get_targets() to get the main