From patchwork Sun Nov 18 22:09:51 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 199913 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 5735C2C008E for ; Mon, 19 Nov 2012 09:10:08 +1100 (EST) Received: from localhost ([::1]:59304 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TaD41-0002g2-GX for incoming@patchwork.ozlabs.org; Sun, 18 Nov 2012 17:10:05 -0500 Received: from eggs.gnu.org ([208.118.235.92]:42363) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TaD3s-0002fv-RV for qemu-devel@nongnu.org; Sun, 18 Nov 2012 17:09:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TaD3p-0006Mo-Mh for qemu-devel@nongnu.org; Sun, 18 Nov 2012 17:09:56 -0500 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:44208) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TaD3p-0006Mi-G7 for qemu-devel@nongnu.org; Sun, 18 Nov 2012 17:09:53 -0500 Received: from localhost (v220110690675601.yourvserver.net.local [127.0.0.1]) by v220110690675601.yourvserver.net (Postfix) with ESMTP id 84F32728002F; Sun, 18 Nov 2012 23:09:52 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at weilnetz.de Received: from v220110690675601.yourvserver.net ([127.0.0.1]) by localhost (v220110690675601.yourvserver.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Zf1lnCkpIkmV; Sun, 18 Nov 2012 23:09:52 +0100 (CET) Received: by v220110690675601.yourvserver.net (Postfix, from userid 1000) id 2EA64728003A; Sun, 18 Nov 2012 23:09:51 +0100 (CET) From: Stefan Weil To: Blue Swirl Date: Sun, 18 Nov 2012 23:09:51 +0100 Message-Id: <1353276591-15809-1-git-send-email-sw@weilnetz.de> X-Mailer: git-send-email 1.7.10.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 78.47.199.172 Cc: Stefan Weil , qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH] Makefile: Add missing dependency (fix parallel builds) 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 The executables in i386-softmmu, i386-linux-user, ... depend on the recently added libqemustub.a. Signed-off-by: Stefan Weil --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index be52153..47482ea 100644 --- a/Makefile +++ b/Makefile @@ -136,6 +136,8 @@ pixman/Makefile: $(SRC_PATH)/pixman/configure $(SRC_PATH)/pixman/configure: (cd $(SRC_PATH)/pixman; autoreconf -v --install) +$(SUBDIR_RULES): libqemustub.a + $(filter %-softmmu,$(SUBDIR_RULES)): $(universal-obj-y) $(trace-obj-y) $(common-obj-y) $(extra-obj-y) subdir-libdis $(filter %-user,$(SUBDIR_RULES)): $(universal-obj-y) $(trace-obj-y) subdir-libdis-user subdir-libuser