Attention is currently required from: Felix Singer, Thomas Heijligen. Nico Huber has posted comments on this change. ( https://review.coreboot.org/c/flashrom/+/58622 )
Change subject: Introduce include directory for header files ......................................................................
Patch Set 2: Code-Review+1
(1 comment)
File meson.build:
https://review.coreboot.org/c/flashrom/+/58622/comment/bacf49b4_145fd605 PS2, Line 413: include_directories : include_directories('src/include'), IIRC, you can avoid repeating the patch by using a variable, e.g. one on top:
include_dirs = include_directories('src/include')
and then use
include_directories : include_dirs,
everywhere. It even works literally in the `ich_descriptors_tool/meson.build`, cf. CB:58305.