From patchwork Tue Feb 21 10:12:39 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?b?6Zmz6Z+L5Lu7?= X-Patchwork-Id: 142308 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 35D0EB6FA1 for ; Wed, 22 Feb 2012 02:03:54 +1100 (EST) Received: from localhost ([::1]:52714 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RzrFm-0007dC-Ni for incoming@patchwork.ozlabs.org; Tue, 21 Feb 2012 10:03:42 -0500 Received: from eggs.gnu.org ([140.186.70.92]:37406) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RzmiL-0007VE-QU for qemu-devel@nongnu.org; Tue, 21 Feb 2012 05:13:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RzmiG-0008CD-4b for qemu-devel@nongnu.org; Tue, 21 Feb 2012 05:12:53 -0500 Received: from csmailer.cs.nctu.edu.tw ([140.113.235.130]:22519) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RzmiF-0008Am-9Y; Tue, 21 Feb 2012 05:12:48 -0500 Received: from csmailer.cs.nctu.edu.tw (localhost [127.0.0.1]) by csmailer.cs.nctu.edu.tw (Postfix) with ESMTP id 2957B769; Tue, 21 Feb 2012 18:18:04 +0800 (CST) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=cs.nctu.edu.tw; h=date :from:to:cc:subject:message-id:mime-version:content-type; s= rsa1024; bh=Jh5xleVwv1WssMo2AUmQyzYV1ak=; b=LCcUnncfnPXhOZwlsNvR 8hZVE7EWXe54+GtwaDKPJQ1xvVvpLTLENPtz48yONPx2Mgv5LGmGTPtG0noKSnVV r7KNP9dL6acRdG8kRLPH65ffypwzEPCeyhlI/Ey3dHxKDGe1h86OrWyY0/xIDXCc hDRrY0lV1ueTlOtTtuznNpo= Received: from alumni.cs.nctu.edu.tw (alumni.cs.nctu.edu.tw [140.113.235.116]) by csmailer.cs.nctu.edu.tw (Postfix) with ESMTP id 096FB768; Tue, 21 Feb 2012 18:18:04 +0800 (CST) Received: (from chenwj@localhost) by alumni.cs.nctu.edu.tw (8.14.4/8.14.4/Submit) id q1LACdRq095544; Tue, 21 Feb 2012 18:12:39 +0800 (CST) (envelope-from chenwj) Date: Tue, 21 Feb 2012 18:12:39 +0800 From: =?utf-8?B?6Zmz6Z+L5Lu7?= To: qemu-devel@nongnu.org Message-ID: <20120221101239.GA95445@cs.nctu.edu.tw> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 140.113.235.130 X-Mailman-Approved-At: Tue, 21 Feb 2012 10:03:36 -0500 Cc: qemu-trivial@nongnu.org Subject: [Qemu-devel] [PATCH] Fix dependency issue introduced by commit 7b93fadf3a38d1ed65ea5536a52efc2772c6e3b8 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Commit 7b93fadf3a38d1ed65ea5536a52efc2772c6e3b8 adds basic version of bridge helper, but introduces dependency issue at the same time. While building target xxx-linux-user, qemu-bridge-helper.c needs config-host.h which is not generated at the moment. Building recurse-all target first fixes the problem. Signed-off-by: Chen Wei-Ren --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index e66e885..618b306 100644 --- a/Makefile +++ b/Makefile @@ -79,7 +79,7 @@ defconfig: -include config-all-devices.mak -build-all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all +build-all: $(DOCS) $(TOOLS) recurse-all $(HELPERS-y) config-host.h: config-host.h-timestamp config-host.h-timestamp: config-host.mak