From patchwork Wed Sep 7 23:40:51 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Roth X-Patchwork-Id: 113849 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 09D66B6F90 for ; Thu, 8 Sep 2011 09:41:40 +1000 (EST) Received: from localhost ([::1]:40601 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R1RkN-0001xP-Sf for incoming@patchwork.ozlabs.org; Wed, 07 Sep 2011 19:41:35 -0400 Received: from eggs.gnu.org ([140.186.70.92]:46533) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R1Rk8-0001EN-8t for qemu-devel@nongnu.org; Wed, 07 Sep 2011 19:41:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R1Rk7-0008K3-4U for qemu-devel@nongnu.org; Wed, 07 Sep 2011 19:41:20 -0400 Received: from mout.perfora.net ([74.208.4.195]:64755) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R1Rk7-0008Jk-0I for qemu-devel@nongnu.org; Wed, 07 Sep 2011 19:41:19 -0400 Received: from localhost.localdomain (adsl-99-62-37-231.dsl.aus2tx.sbcglobal.net [99.62.37.231]) by mrelay.perfora.net (node=mrus4) with ESMTP (Nemesis) id 0MAhf9-1QrJfL0oDz-00ByIM; Wed, 07 Sep 2011 19:41:03 -0400 From: Michael Roth To: qemu-devel@nongnu.org Date: Wed, 7 Sep 2011 18:40:51 -0500 Message-Id: <1315438852-18029-1-git-send-email-mdroth@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.0.4 X-Provags-ID: V02:K0:lU5GbyH0s1Oue2mFoEQgEnuk21eqhgMQtOvADR42Uve wJXc8JDD6IUPCLkacG/tfJVcOaWppeMUKKH2XPP1B1lLMryhHy UTTIYQk1g1aFEHrIy++JcxEVYcCZn5TvXtLjOIrBzCiMn6fW31 mcySEi54NjpxcfGmxjwJwx9y7CjvmSBNRrbJPCZHDPWVtW3jgy uT3D2NWw5kCZqEzIDGYxhQqm/hW8vcxiRHByx5+tF8ldJlJ2s1 DtnekbcbCYQ5KefqipUCGAttNqXTfiSdACVOk60EhpCd/wsj9W NIAVDzmHxSNjgW+p/CleievJl13OQRffX+Jy0RrijU5EJ3RAU9 tseKoF5Rnl3CVsiUk1NFyaASTdUQ9mjnfzNU7GjU+GWa6bU674 v+eHkCiCgveEuOYb2gZwiMmKVrTspwbAVk= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 74.208.4.195 Cc: aliguori@us.ibm.com, agraf@suse.de Subject: [Qemu-devel] [PATCH 1/2] build: fix missing trace dep on GENERATED_HEADERS 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 fc764105 added an include for qemu-common.h to trace/control.h, which made all users of this header file dependent on GENERATED_HEADERS. Since it's used by pretty much all the trace backends now, make trace-obj-y dependent on GENERATED_HEADERS. Signed-off-by: Michael Roth Reviewed-by: Stefan Hajnoczi --- Makefile.objs | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/Makefile.objs b/Makefile.objs index 26b885b..a529a11 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -390,6 +390,8 @@ trace-nested-y += control.o trace-obj-y += $(addprefix trace/, $(trace-nested-y)) +$(trace-obj-y): $(GENERATED_HEADERS) + ###################################################################### # smartcard