Minor race condition (that's shockingly hard to reproduce, though nearly always reproducible in an rpmbuild) with sqlhist.tab.h being built after it's needed by tracefs-sqlhist.c. This just sets an explicit dependency for tracefs-sqlhist.o on sqlhist.tab.h existing first Signed-off-by: John 'Warthog9' Hawley (VMware) <warthog9@xxxxxxxxxxxxxx> --- src/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Makefile b/src/Makefile index 9248efc..314c16c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -64,3 +64,5 @@ dep_includes := $(wildcard $(DEPS)) ifneq ($(dep_includes),) include $(dep_includes) endif + +$(bdir)/tracefs-sqlhist.o tracefs-sqlhist.o: sqlhist.tab.h -- 2.26.3