From 85bb53f3ff2210e129ac0185d9231dbbf75afdee Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Sat, 8 Sep 2018 18:39:50 +0200 Subject: Fix a testsuite-related error for powerpc The LD environment variable needs to be set now (in 4.19-rc2). It's referenced by LD_DEAD_CODE_DATA_ELIMINATION. The tests probably ought to run everything run via 'scriptconfig' in a clean environment, because 'scriptconfig' automatically picks up environment variables anyway. The current setup is nice in that it indirectly catches stuff that might affect the defconfig tests though, which don't use scriptconfig. --- testsuite.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testsuite.py b/testsuite.py index eb305e0..b5f0388 100644 --- a/testsuite.py +++ b/testsuite.py @@ -2538,6 +2538,7 @@ def run_compatibility_tests(): os.environ["srctree"] = "." os.environ["CC"] = "gcc" + os.environ["LD"] = "ld" if not os.path.exists("scripts/kconfig/conf"): -- cgit v1.2.3