From 8d8763f40788803086e0e39bd09696e069982386 Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Tue, 11 Jul 2017 15:11:21 +0200 Subject: [PATCH 1/2] 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 From 25fbf00118e71426d388f3d6723b1a1f3e7ce101 Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Tue, 11 Jul 2017 15:23:28 +0200 Subject: [PATCH 2/2] build: fix ttable test test_ttable.refout wasn't in the dist package. Signed-off-by: David Lamparter --- tests/Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 559d769702..8f612c45a5 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -148,7 +148,9 @@ EXTRA_DIST = \ lib/test_stream.refout \ lib/test_table.py \ lib/test_timer_correctness.py \ - lib/test_ttable.py + lib/test_ttable.py \ + lib/test_ttable.refout \ + # end .PHONY: tests.xml tests.xml: $(check_PROGRAMS)