From patchwork Wed May 15 08:11:02 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Ceresoli X-Patchwork-Id: 243933 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id BCE0B2C008C for ; Wed, 15 May 2013 18:11:49 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 0F49E100556; Wed, 15 May 2013 08:11:28 +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 2k0bcN9NXwsX; Wed, 15 May 2013 08:11:23 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 895A810B8C3; Wed, 15 May 2013 08:11:23 +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 CC4A18F7B2 for ; Wed, 15 May 2013 08:11:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 2B82F10B9AF for ; Wed, 15 May 2013 08:11:22 +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 MGqnzO3qr0RA for ; Wed, 15 May 2013 08:11:20 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from m-14.th.seeweb.it (m-14.th.seeweb.it [217.64.195.243]) by fraxinus.osuosl.org (Postfix) with ESMTPS id E1F5E10B996 for ; Wed, 15 May 2013 08:11:19 +0000 (UTC) Received: from wallace.comelit.it (host138-62-static.18-80-b.business.telecomitalia.it [80.18.62.138]) (authenticated bits=0) by m-14.th.seeweb.it (8.14.3/8.14.3/Debian-9.4) with ESMTP id r4F8BUjI027473; Wed, 15 May 2013 10:11:36 +0200 From: Luca Ceresoli To: buildroot@uclibc.org Date: Wed, 15 May 2013 10:11:02 +0200 Message-Id: <1368605463-20677-1-git-send-email-luca@lucaceresoli.net> X-Mailer: git-send-email 1.7.10.4 Cc: Luca Ceresoli Subject: [Buildroot] [PATCH 1/2] graph-depends: ignore the 'target-generic-dont-remount-rw' 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 graph-depends script tries to call 'make target-generic-dont-remount-rw', which doesn't exist since 'target-generic-dont-remount-rw' is not a package. See also the comments for commit 72bd61e5b8c2094378. Signed-off-by: Luca Ceresoli Acked-by: Thomas Petazzoni --- I guess we could compute the TARGET_EXCEPTIONS automatically and avoid the need to update it every time. But it would be a longer work, so for now I would just fix it manually. support/scripts/graph-depends | 1 + 1 file changed, 1 insertion(+) diff --git a/support/scripts/graph-depends b/support/scripts/graph-depends index 180c81d..8d81969 100755 --- a/support/scripts/graph-depends +++ b/support/scripts/graph-depends @@ -164,6 +164,7 @@ TARGET_EXCEPTIONS = [ "target-generic-issue", "target-generic-getty-busybox", "target-generic-do-remount-rw", + "target-generic-dont-remount-rw", "target-finalize", "erase-fakeroots", "target-generic-hostname",