From: Daniel Gomez <da.gomez@xxxxxxxxxxx> Both genmap and makemapdata require the linux/version.h header. To ensure successful builds on macOS hosts, make sure usr/include is included in the HOSTCFLAGS. Fixes errors: drivers/accessibility/speakup/genmap.c:13:10: fatal error: 'linux/version.h' file not found 13 | #include <linux/version.h> | ^~~~~~~~~~~~~~~~~ 1 error generated. drivers/accessibility/speakup/makemapdata.c:13:10: fatal error: 'linux/version.h' file not found 13 | #include <linux/version.h> | ^~~~~~~~~~~~~~~~~ 1 error generated. Signed-off-by: Daniel Gomez <da.gomez@xxxxxxxxxxx> --- drivers/accessibility/speakup/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/accessibility/speakup/Makefile b/drivers/accessibility/speakup/Makefile index 6f6a83565c0d..74ee0c31370f 100644 --- a/drivers/accessibility/speakup/Makefile +++ b/drivers/accessibility/speakup/Makefile @@ -38,6 +38,7 @@ clean-files := mapdata.h speakupmap.h # Generate mapdata.h from headers hostprogs += makemapdata makemapdata-objs := makemapdata.o +HOSTCFLAGS_makemapdata.o += -I$(srctree)/usr/include quiet_cmd_mkmap = MKMAP $@ cmd_mkmap = TOPDIR=$(srctree) \ @@ -51,6 +52,7 @@ $(obj)/mapdata.h: $(obj)/makemapdata # Generate speakupmap.h from mapdata.h hostprogs += genmap genmap-objs := genmap.o +HOSTCFLAGS_genmap.o += -I$(srctree)/usr/include $(obj)/genmap.o: $(obj)/mapdata.h quiet_cmd_genmap = GENMAP $@ -- Git-146)