From 8d8763f40788803086e0e39bd09696e069982386 Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Tue, 11 Jul 2017 15:11:21 +0200 Subject: [PATCH] lib: fix out-of-tree build "$(top_srcdir)" is not on the include path, but "$(top_srcdir)/lib" is. This is relevant when building with a separate build directory. Signed-off-by: David Lamparter --- lib/zebra.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/zebra.h b/lib/zebra.h index 901a49073d..7f2609c125 100644 --- a/lib/zebra.h +++ b/lib/zebra.h @@ -126,7 +126,7 @@ typedef unsigned char u_int8_t; #define __APPLE_USE_RFC_3542 #endif -#include "lib/openbsd-tree.h" +#include "openbsd-tree.h" #include #include -- 2.39.5