[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <a7ded59eb81252b45ef4141759ee69744ea6be38.1505257614.git.shuahkh@osg.samsung.com>
Date: Tue, 12 Sep 2017 17:52:56 -0600
From: Shuah Khan <shuahkh@....samsung.com>
To: yamada.masahiro@...ionext.com, mmarek@...e.com, shuah@...nel.org,
tglx@...utronix.de, mingo@...hat.com, peterz@...radead.org,
bamvor.zhangjian@...aro.org, emilio.lopez@...labora.co.uk,
corbet@....net
Cc: Shuah Khan <shuahkh@....samsung.com>, tytso@....edu,
ebiederm@...ssion.com, Tim.Bird@...y.com,
gregkh@...uxfoundation.org, linux-kbuild@...r.kernel.org,
linux-kernel@...r.kernel.org, linux-kselftest@...r.kernel.org
Subject: [PATCH 03/11] selftests: Makefile: clear LDFLAGS for make O=dir use-case
kselftest target fails when object directory is specified to relocate
objects. Inherited "LDFLAGS = -m" fails the test builds. Clear it.
Signed-off-by: Shuah Khan <shuahkh@....samsung.com>
---
tools/testing/selftests/Makefile | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile
index 26ce4f7168be..f4368db011ea 100644
--- a/tools/testing/selftests/Makefile
+++ b/tools/testing/selftests/Makefile
@@ -52,6 +52,10 @@ override LDFLAGS =
override MAKEFLAGS =
endif
+ifneq ($(KBUILD_SRC),)
+override LDFLAGS =
+endif
+
BUILD := $(O)
ifndef BUILD
BUILD := $(KBUILD_OUTPUT)
--
2.11.0
Powered by blists - more mailing lists