From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38016) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoCha-0002EC-0a for qemu-devel@nongnu.org; Thu, 07 Apr 2016 12:22:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aoChU-0002Oh-U2 for qemu-devel@nongnu.org; Thu, 07 Apr 2016 12:22:37 -0400 Received: from mail-lb0-x22d.google.com ([2a00:1450:4010:c04::22d]:36222) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoChU-0002OS-M1 for qemu-devel@nongnu.org; Thu, 07 Apr 2016 12:22:32 -0400 Received: by mail-lb0-x22d.google.com with SMTP id bk9so26082411lbc.3 for ; Thu, 07 Apr 2016 09:22:32 -0700 (PDT) References: <1460044433-19282-1-git-send-email-sergey.fedorov@linaro.org> <1460044433-19282-3-git-send-email-sergey.fedorov@linaro.org> <20160407181800.12b1539c.cornelia.huck@de.ibm.com> From: Sergey Fedorov Message-ID: <57068946.8020903@gmail.com> Date: Thu, 7 Apr 2016 19:22:30 +0300 MIME-Version: 1.0 In-Reply-To: <20160407181800.12b1539c.cornelia.huck@de.ibm.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 02/11] pc-bios/s390-ccw: Use correct strip when cross-compiling List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Cornelia Huck , Sergey Fedorov Cc: Peter Crosthwaite , qemu-devel@nongnu.org, Alexander Graf , Christian Borntraeger , Paolo Bonzini , =?UTF-8?Q?Alex_Benn=c3=a9e?= , Richard Henderson On 07/04/16 19:18, Cornelia Huck wrote: > On Thu, 7 Apr 2016 18:53:44 +0300 > Sergey Fedorov wrote: > >> From: Sergey Fedorov >> >> Signed-off-by: Sergey Fedorov >> Signed-off-by: Sergey Fedorov > Any reason you use two different email addresses here? :) I'd like people could reach me after my @linaro.org account get disabled. That's why I put my private address. On the other hand, I'd like to signify I did this work under Linaro. That's why I put another s-o-b tag. Thanks, Sergey > >> --- >> pc-bios/s390-ccw/Makefile | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/pc-bios/s390-ccw/Makefile b/pc-bios/s390-ccw/Makefile >> index 4208cb429593..5ce6d4ccbaf5 100644 >> --- a/pc-bios/s390-ccw/Makefile >> +++ b/pc-bios/s390-ccw/Makefile >> @@ -20,7 +20,7 @@ s390-ccw.elf: $(OBJECTS) >> $(call quiet-command,$(CC) $(LDFLAGS) -o $@ $(OBJECTS)," Building $(TARGET_DIR)$@") >> >> s390-ccw.img: s390-ccw.elf >> - $(call quiet-command,strip --strip-unneeded $< -o $@," Stripping $(TARGET_DIR)$@") >> + $(call quiet-command,$(STRIP) --strip-unneeded $< -o $@," Stripping $(TARGET_DIR)$@") >> >> $(OBJECTS): Makefile >> > Acked-by: Cornelia Huck > > I can take this through my queue for 2.7, if nothing else depends on it. >