From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1763095AbdEXKVn (ORCPT ); Wed, 24 May 2017 06:21:43 -0400 Received: from terminus.zytor.com ([65.50.211.136]:37743 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753083AbdEXKV0 (ORCPT ); Wed, 24 May 2017 06:21:26 -0400 Date: Wed, 24 May 2017 03:17:48 -0700 From: tip-bot for Jan Kiszka Message-ID: Cc: tglx@linutronix.de, peterz@infradead.org, mingo@kernel.org, jan.kiszka@siemens.com, torvalds@linux-foundation.org, jpoimboe@redhat.com, hpa@zytor.com, linux-kernel@vger.kernel.org Reply-To: tglx@linutronix.de, peterz@infradead.org, mingo@kernel.org, jan.kiszka@siemens.com, torvalds@linux-foundation.org, jpoimboe@redhat.com, linux-kernel@vger.kernel.org, hpa@zytor.com In-Reply-To: <1944fcd8-e3df-d1f7-c0e4-60aeb1917a24@siemens.com> References: <1944fcd8-e3df-d1f7-c0e4-60aeb1917a24@siemens.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/urgent] x86/build: Permit building with old make versions Git-Commit-ID: 7e6091209f7f73e2a81943020793b5ad26d645c6 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 7e6091209f7f73e2a81943020793b5ad26d645c6 Gitweb: http://git.kernel.org/tip/7e6091209f7f73e2a81943020793b5ad26d645c6 Author: Jan Kiszka AuthorDate: Tue, 23 May 2017 18:27:54 +0200 Committer: Ingo Molnar CommitDate: Wed, 24 May 2017 09:05:17 +0200 x86/build: Permit building with old make versions At least Make 3.82 dislikes the tab in front of the $(warning) function: arch/x86/Makefile:162: *** recipe commences before first target. Stop. Let's be gentle. Signed-off-by: Jan Kiszka Acked-by: Thomas Gleixner Cc: Josh Poimboeuf Cc: Linus Torvalds Cc: Peter Zijlstra Link: http://lkml.kernel.org/r/1944fcd8-e3df-d1f7-c0e4-60aeb1917a24@siemens.com Signed-off-by: Ingo Molnar --- arch/x86/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/Makefile b/arch/x86/Makefile index 5851411..bf240b9 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile @@ -159,7 +159,7 @@ ifdef CONFIG_FUNCTION_GRAPH_TRACER # If '-Os' is enabled, disable it and print a warning. ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE undefine CONFIG_CC_OPTIMIZE_FOR_SIZE - $(warning Disabling CONFIG_CC_OPTIMIZE_FOR_SIZE. Your compiler does not have -mfentry so you cannot optimize for size with CONFIG_FUNCTION_GRAPH_TRACER.) + $(warning Disabling CONFIG_CC_OPTIMIZE_FOR_SIZE. Your compiler does not have -mfentry so you cannot optimize for size with CONFIG_FUNCTION_GRAPH_TRACER.) endif endif