From 35d6ddb0b3fae887851aa347c033ec0e709468ce Mon Sep 17 00:00:00 2001 From: Juergen Gross Date: Tue, 10 Jul 2018 10:31:51 +0200 Subject: [PATCH] xen: correct DEFCONFIG_LIST Kconfig item The default value of DEFCONFIG_LIST is wrong: it should be the value of the configured ARCH_DEFCONFIG item, not the string "$ARCH_DEFCONFIG". Signed-off-by: Juergen Gross Acked-by: Wei Liu Reviewed-by: Doug Goldstein --- xen/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/Kconfig b/xen/Kconfig index ea7229ad1f..4a207e4553 100644 --- a/xen/Kconfig +++ b/xen/Kconfig @@ -24,7 +24,7 @@ config XEN_FULLVERSION config DEFCONFIG_LIST string option defconfig_list - default "$ARCH_DEFCONFIG" + default ARCH_DEFCONFIG config EXPERT string -- 2.30.2