Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754351Ab3HVUZp (ORCPT ); Thu, 22 Aug 2013 16:25:45 -0400 Received: from mail-la0-f50.google.com ([209.85.215.50]:46296 "EHLO mail-la0-f50.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752475Ab3HVUZn (ORCPT ); Thu, 22 Aug 2013 16:25:43 -0400 From: Max Filippov To: linux-kernel@vger.kernel.org Cc: Sam Ravnborg , Guenter Roeck , Max Filippov , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , x86@kernel.org Subject: [PATCH v2 2/5] x86: don't use echo -e needlessly Date: Fri, 23 Aug 2013 00:25:22 +0400 Message-Id: <1377203125-22934-3-git-send-email-jcmvbkbc@gmail.com> X-Mailer: git-send-email 1.7.7.6 In-Reply-To: <1377203125-22934-1-git-send-email-jcmvbkbc@gmail.com> References: <1377203125-22934-1-git-send-email-jcmvbkbc@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1021 Lines: 32 -e is not needed to output strings without escape sequences. Cc: Thomas Gleixner Cc: Ingo Molnar Cc: "H. Peter Anvin" Cc: x86@kernel.org Signed-off-by: Max Filippov --- arch/x86/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/x86/Makefile b/arch/x86/Makefile index 07639c6..0954686 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile @@ -95,7 +95,7 @@ endif ifdef CONFIG_X86_X32 x32_ld_ok := $(call try-run,\ - /bin/echo -e '1: .quad 1b' | \ + echo '1: .quad 1b' | \ $(CC) $(KBUILD_AFLAGS) -c -x assembler -o "$$TMP" - && \ $(OBJCOPY) -O elf32-x86-64 "$$TMP" "$$TMPO" && \ $(LD) -m elf32_x86_64 "$$TMPO" -o "$$TMP",y,n) -- 1.7.7.6 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/