diff mbox series

Arm: fix build with CONFIG_DTB_FILE set

Message ID f4c6b07e-c5de-ba75-c1ce-1475939f10af@suse.com (mailing list archive)
State New, archived
Headers show
Series Arm: fix build with CONFIG_DTB_FILE set | expand

Commit Message

Jan Beulich May 6, 2020, 9:36 a.m. UTC
Recent changes no longer allow modification of AFLAGS. The needed
conversion was apparently missed in 2740d96efdd3 ("xen/build: have the
root Makefile generates the CFLAGS").

Signed-off-by: Jan Beulich <jbeulich@suse.com>

Comments

Julien Grall May 6, 2020, 9:41 a.m. UTC | #1
On 06/05/2020 10:36, Jan Beulich wrote:
> Recent changes no longer allow modification of AFLAGS. The needed
> conversion was apparently missed in 2740d96efdd3 ("xen/build: have the
> root Makefile generates the CFLAGS").
> 
> Signed-off-by: Jan Beulich <jbeulich@suse.com>

Acked-by: Julien Grall <jgrall@amazon.com>

Cheers,

> 
> --- a/xen/arch/arm/Makefile
> +++ b/xen/arch/arm/Makefile
> @@ -68,7 +68,7 @@ extra-y += $(TARGET_SUBARCH)/head.o
>   
>   ifdef CONFIG_DTB_FILE
>   obj-y += dtb.o
> -AFLAGS += -DCONFIG_DTB_FILE=\"$(CONFIG_DTB_FILE)\"
> +AFLAGS-y += -DCONFIG_DTB_FILE=\"$(CONFIG_DTB_FILE)\"
>   endif
>   
>   ALL_OBJS := $(TARGET_SUBARCH)/head.o $(ALL_OBJS)
>
diff mbox series

Patch

--- a/xen/arch/arm/Makefile
+++ b/xen/arch/arm/Makefile
@@ -68,7 +68,7 @@  extra-y += $(TARGET_SUBARCH)/head.o
 
 ifdef CONFIG_DTB_FILE
 obj-y += dtb.o
-AFLAGS += -DCONFIG_DTB_FILE=\"$(CONFIG_DTB_FILE)\"
+AFLAGS-y += -DCONFIG_DTB_FILE=\"$(CONFIG_DTB_FILE)\"
 endif
 
 ALL_OBJS := $(TARGET_SUBARCH)/head.o $(ALL_OBJS)