From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56697) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoCGs-00019u-Tq for qemu-devel@nongnu.org; Thu, 07 Apr 2016 11:55:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aoCGq-0002lS-Py for qemu-devel@nongnu.org; Thu, 07 Apr 2016 11:55:02 -0400 Received: from mail-lf0-x230.google.com ([2a00:1450:4010:c07::230]:35598) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aoCGq-0002lL-IA for qemu-devel@nongnu.org; Thu, 07 Apr 2016 11:55:00 -0400 Received: by mail-lf0-x230.google.com with SMTP id c126so60346733lfb.2 for ; Thu, 07 Apr 2016 08:55:00 -0700 (PDT) From: Sergey Fedorov Date: Thu, 7 Apr 2016 18:53:44 +0300 Message-Id: <1460044433-19282-3-git-send-email-sergey.fedorov@linaro.org> In-Reply-To: <1460044433-19282-1-git-send-email-sergey.fedorov@linaro.org> References: <1460044433-19282-1-git-send-email-sergey.fedorov@linaro.org> Subject: [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: qemu-devel@nongnu.org Cc: Sergey Fedorov , Peter Crosthwaite , Alexander Graf , Christian Borntraeger , Paolo Bonzini , Cornelia Huck , Sergey Fedorov , =?UTF-8?q?Alex=20Benn=C3=A9e?= , Richard Henderson From: Sergey Fedorov Signed-off-by: Sergey Fedorov Signed-off-by: Sergey Fedorov --- 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 -- 2.8.1