Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752415AbcKGIzS (ORCPT ); Mon, 7 Nov 2016 03:55:18 -0500 Received: from terminus.zytor.com ([198.137.202.10]:43644 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751454AbcKGIzP (ORCPT ); Mon, 7 Nov 2016 03:55:15 -0500 Date: Mon, 7 Nov 2016 00:52:48 -0800 From: tip-bot for Paul Bolle Message-ID: Cc: mingo@kernel.org, hpa@zytor.com, pebolle@tiscali.nl, matt@codeblueprint.co.uk, dhowells@redhat.com, peterz@infradead.org, torvalds@linux-foundation.org, linux-kernel@vger.kernel.org, tglx@linutronix.de Reply-To: hpa@zytor.com, mingo@kernel.org, matt@codeblueprint.co.uk, pebolle@tiscali.nl, dhowells@redhat.com, peterz@infradead.org, linux-kernel@vger.kernel.org, torvalds@linux-foundation.org, tglx@linutronix.de In-Reply-To: <1478166468-9760-1-git-send-email-pebolle@tiscali.nl> References: <1478166468-9760-1-git-send-email-pebolle@tiscali.nl> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/boot] x86/boot/build: Remove always empty $(USERINCLUDE) Git-Commit-ID: 0acba3f91823a5e53a54af5dc31fc774b0e64e99 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 Content-Length: 1625 Lines: 45 Commit-ID: 0acba3f91823a5e53a54af5dc31fc774b0e64e99 Gitweb: http://git.kernel.org/tip/0acba3f91823a5e53a54af5dc31fc774b0e64e99 Author: Paul Bolle AuthorDate: Thu, 3 Nov 2016 10:47:48 +0100 Committer: Ingo Molnar CommitDate: Mon, 7 Nov 2016 07:30:01 +0100 x86/boot/build: Remove always empty $(USERINCLUDE) Commmit b6eea87fc685: ("x86, boot: Explicitly include autoconf.h for hostprogs") correctly noted: [...] that because $(USERINCLUDE) isn't exported by the top-level Makefile it's actually empty in arch/x86/boot/Makefile. So let's do the sane thing and remove the reference to that make variable. Signed-off-by: Paul Bolle Reviewed-by: Matt Fleming Cc: David Howells Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Link: http://lkml.kernel.org/r/1478166468-9760-1-git-send-email-pebolle@tiscali.nl Signed-off-by: Ingo Molnar --- arch/x86/boot/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/boot/Makefile b/arch/x86/boot/Makefile index 12ea8f8..0d810fb 100644 --- a/arch/x86/boot/Makefile +++ b/arch/x86/boot/Makefile @@ -65,7 +65,7 @@ clean-files += cpustr.h # --------------------------------------------------------------------------- -KBUILD_CFLAGS := $(USERINCLUDE) $(REALMODE_CFLAGS) -D_SETUP +KBUILD_CFLAGS := $(REALMODE_CFLAGS) -D_SETUP KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__ GCOV_PROFILE := n UBSAN_SANITIZE := n