[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20200416104748.25243-1-l.stach@pengutronix.de>
Date: Thu, 16 Apr 2020 12:47:48 +0200
From: Lucas Stach <l.stach@...gutronix.de>
To: linux-kernel@...r.kernel.org
Cc: Andrew Morton <akpm@...ux-foundation.org>, kernel@...gutronix.de,
patchwork-lst@...gutronix.de
Subject: [PATCH] tools/vm: fix cross-compile build
7ed1c1901fe5 (tools: fix cross-compile var clobbering) moved the setup of
the CC variable to tools/scripts/Makefile.include to make the behavior
consistent across all the tools Makefiles. As the vm tools missed the
include we end up with the wrong CC in a cross-compiling evironment.
Fixes: 7ed1c1901fe5 (tools: fix cross-compile var clobbering)
Signed-off-by: Lucas Stach <l.stach@...gutronix.de>
---
tools/vm/Makefile | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tools/vm/Makefile b/tools/vm/Makefile
index 20f6cf04377f..9860622cbb15 100644
--- a/tools/vm/Makefile
+++ b/tools/vm/Makefile
@@ -1,6 +1,8 @@
# SPDX-License-Identifier: GPL-2.0
# Makefile for vm tools
#
+include ../scripts/Makefile.include
+
TARGETS=page-types slabinfo page_owner_sort
LIB_DIR = ../lib/api
--
2.25.2
Powered by blists - more mailing lists