From patchwork Tue Mar 26 14:02:13 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Llu=C3=ADs_Vilanova?= X-Patchwork-Id: 231236 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 03FB02C0084 for ; Wed, 27 Mar 2013 01:38:18 +1100 (EST) Received: from localhost ([::1]:41867 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UKUXw-0000QF-Uq for incoming@patchwork.ozlabs.org; Tue, 26 Mar 2013 10:08:16 -0400 Received: from eggs.gnu.org ([208.118.235.92]:36916) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UKUSC-0000Z9-3N for qemu-devel@nongnu.org; Tue, 26 Mar 2013 10:02:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UKUS6-0008Iz-Mt for qemu-devel@nongnu.org; Tue, 26 Mar 2013 10:02:19 -0400 Received: from roura.ac.upc.es ([147.83.33.10]:37504) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UKUS6-0008Ir-BK for qemu-devel@nongnu.org; Tue, 26 Mar 2013 10:02:14 -0400 Received: from gw.ac.upc.edu (gw.ac.upc.es [147.83.30.3]) by roura.ac.upc.es (8.13.8/8.13.8) with ESMTP id r2QE2Dne005260 for ; Tue, 26 Mar 2013 15:02:13 +0100 Received: from localhost (unknown [84.88.51.85]) by gw.ac.upc.edu (Postfix) with ESMTP id 343936B01C4 for ; Tue, 26 Mar 2013 15:02:13 +0100 (CET) From: =?utf-8?b?TGx1w61z?= Vilanova To: qemu-devel@nongnu.org Date: Tue, 26 Mar 2013 15:02:13 +0100 Message-Id: <20130326140213.4471.57760.stgit@fimbulvetr.bsc.es> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <20130326140021.4471.99597.stgit@fimbulvetr.bsc.es> References: <20130326140021.4471.99597.stgit@fimbulvetr.bsc.es> User-Agent: StGit/0.16 MIME-Version: 1.0 X-MIME-Autoconverted: from 8bit to quoted-printable by roura.ac.upc.es id r2QE2Dne005260 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 147.83.33.10 Subject: [Qemu-devel] [PATCH 20/22] build: Fix installation of target-dependant files 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 Pass all the relevant sub-directory make variables. Signed-off-by: LluĂ­s Vilanova --- Cc: Anthony Liguori Cc: Paul Brook --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index feb395c..8b0155d 100644 --- a/Makefile +++ b/Makefile @@ -339,7 +339,7 @@ endif $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \ done for d in $(TARGET_DIRS); do \ - $(MAKE) -C $$d $@ || exit 1 ; \ + $(MAKE) $(SUBDIR_MAKEFLAGS) TARGET_DIR=$$d/ -C $$d $@ || exit 1 ; \ done # various test targets