From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57294) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WLpHB-0001y7-OS for qemu-devel@nongnu.org; Fri, 07 Mar 2014 02:33:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WLpH6-0000jF-EA for qemu-devel@nongnu.org; Fri, 07 Mar 2014 02:33:01 -0500 Received: from mail-ee0-x235.google.com ([2a00:1450:4013:c00::235]:40125) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WLpH6-0000j5-8J for qemu-devel@nongnu.org; Fri, 07 Mar 2014 02:32:56 -0500 Received: by mail-ee0-f53.google.com with SMTP id e51so1539882eek.26 for ; Thu, 06 Mar 2014 23:32:55 -0800 (PST) Sender: Paolo Bonzini Message-ID: <53197624.5090703@redhat.com> Date: Fri, 07 Mar 2014 08:32:52 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <20140120112153.5685.30949.stgit@fimbulvetr.bsc.es> <87zjly3fhf.fsf@fimbulvetr.bsc.es> <877g867qkh.fsf@fimbulvetr.bsc.es> In-Reply-To: <877g867qkh.fsf@fimbulvetr.bsc.es> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH] build: Fix installation of target-dependent files List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, Anthony Liguori Il 07/03/2014 02:19, Lluís Vilanova ha scritto: > Lluís Vilanova writes: > >> Lluís Vilanova writes: >>> Pass all the relevant sub-directory make variables. > >> Ping. > > Ping^2 > > >> Thanks, >> Lluis > > >>> Signed-off-by: Lluís Vilanova >>> --- >>> Makefile | 2 +- >>> 1 file changed, 1 insertion(+), 1 deletion(-) > >>> diff --git a/Makefile b/Makefile >>> index bdff4e4..02ae76d 100644 >>> --- a/Makefile >>> +++ b/Makefile >>> @@ -366,7 +366,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 > > Reviewed-by: Paolo Bonzini Paolo