[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1426046765-19289-1-git-send-email-mpe@ellerman.id.au>
Date: Wed, 11 Mar 2015 15:05:57 +1100
From: Michael Ellerman <mpe@...erman.id.au>
To: shuahkh@....samsung.com
Cc: <linux-kernel@...r.kernel.org>, davej@...emonkey.org.uk,
mmarek@...e.cz, linux-api@...r.kernel.org
Subject: [PATCH v4 1/9] kbuild: Don't pass -rR to selftest makefiles
The makefiles under tools/testing/selftests are not real kbuild
makefiles, they are regular stand alone makefiles. As such they *do*
want all the standard implicit rules and variables defined.
So before calling those makefiles, filter -rR out of MAKEFLAGS.
Without this not all the selftests are built correctly when called via
the top-level Makefile.
Signed-off-by: Michael Ellerman <mpe@...erman.id.au>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 1100ff3c77e3..0836e9d628f0 100644
--- a/Makefile
+++ b/Makefile
@@ -1085,7 +1085,7 @@ headers_check: headers_install
PHONY += kselftest
kselftest:
- $(Q)$(MAKE) -C tools/testing/selftests run_tests
+ $(Q)$(MAKE) -C tools/testing/selftests MAKEFLAGS="$(filter-out rR,$(MAKEFLAGS))" run_tests
# ---------------------------------------------------------------------------
# Modules
--
2.1.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists