Certain build systems, such as bazel, are picky about angled brackets vs double quotes. the failure you see when building is: In file included from src/event-parse.c:27: src/event-utils.h:13:10: error: 'event-parse.h' file not found with <angled> include; use "quotes" instead #include <event-parse.h> ^~~~~~~~~~~~~~~ "event-parse.h" Arguably -iquote is more correct within the library build, hence bazel using it. The libtraceevent Makefile is using -I, hence this not being a problem for others. Signed-off-by: Claire Jensen <cjense@xxxxxxxxxx> --- src/event-utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/event-utils.h b/src/event-utils.h index d377201..44f7968 100644 --- a/src/event-utils.h +++ b/src/event-utils.h @@ -10,7 +10,7 @@ #include <stdarg.h> #include <stdbool.h> -#include <event-parse.h> +#include "event-parse.h" void tep_warning(const char *fmt, ...); void tep_info(const char *fmt, ...); -- 2.32.0.288.g62a8d224e6-goog