diff options
author | Nico Huber <nico.h@gmx.de> | 2020-12-27 21:03:34 +0100 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2021-02-07 16:11:19 +0000 |
commit | 1132600478c7169ae582e3413f5b76efd7ca2123 (patch) | |
tree | 93ea3c1e3b2b1fc7cd7caf0b3d09b11b2410fb0a | |
parent | ad6f6d6bf1bac6453f18f602faa8b80e7277827a (diff) |
coreinfo: Unexport COREBOOT_EXPORTS
coreboot's Makefile exports a lot of variables that influence make sub-
processes (e.g. for Kconfig). We don't want these variables leak into
sub-processes for (lib)payload builds, hence unexport them.
Change-Id: I7d65c0aa6d4550bd6600c437e838339af69496da
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/48939
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | payloads/coreinfo/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/payloads/coreinfo/Makefile b/payloads/coreinfo/Makefile index cd58f392dd..8d2f3c687c 100644 --- a/payloads/coreinfo/Makefile +++ b/payloads/coreinfo/Makefile @@ -1,5 +1,7 @@ ## SPDX-License-Identifier: GPL-2.0-only +unexport $(COREBOOT_EXPORTS) + src := $(CURDIR) srctree := $(src) srck := $(src)/../../util/kconfig |