From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59854) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UVkVn-000760-Ij for qemu-devel@nongnu.org; Fri, 26 Apr 2013 11:24:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UVkVl-0003Po-WE for qemu-devel@nongnu.org; Fri, 26 Apr 2013 11:24:35 -0400 Received: from mail-qe0-f51.google.com ([209.85.128.51]:55539) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UVkVl-0003Pk-Sj for qemu-devel@nongnu.org; Fri, 26 Apr 2013 11:24:33 -0400 Received: by mail-qe0-f51.google.com with SMTP id 1so2821163qec.24 for ; Fri, 26 Apr 2013 08:24:33 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <517A9C26.4010509@redhat.com> Date: Fri, 26 Apr 2013 17:24:22 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <20130421191129.8947.77964.stgit@fimbulvetr.bsc.es> <20130421191333.8947.34112.stgit@fimbulvetr.bsc.es> In-Reply-To: <20130421191333.8947.34112.stgit@fimbulvetr.bsc.es> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH v3 22/24] build: Fix installation of target-dependant files List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?B?TGx1w61zIFZpbGFub3Zh?= Cc: qemu-devel@nongnu.org Il 21/04/2013 21:13, Lluís Vilanova ha scritto: > 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 7916152..ccf6760 100644 > --- a/Makefile > +++ b/Makefile > @@ -346,7 +346,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 > > > Please resubmit this separately too, it is a worthwhile cleanup. Paolo