From 8d268e846228f3b2e3bcae59b2c7123affb7610f Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Sat, 15 Nov 2014 17:26:33 +0100 Subject: BUILD: Fix building rpms make rpms failed becuase header file t_utils.h was not included in tarball t_accept.c:3:21: fatal error: t_utils.h: No such file or directory #include "t_utils.h" ^ compilation terminated. Makefile:445: recipe for target 't_accept.o' failed make[3]: *** [t_accept.o] Error 1 Signed-off-by: Lukas Slebodnik Reviewed-by: Simo Sorce --- proxy/tests/Makefile.am | 3 +++ 1 file changed, 3 insertions(+) diff --git a/proxy/tests/Makefile.am b/proxy/tests/Makefile.am index 058893f..21ec862 100644 --- a/proxy/tests/Makefile.am +++ b/proxy/tests/Makefile.am @@ -19,4 +19,7 @@ check_PROGRAMS = \ noinst_PROGRAMS = $(check_PROGRAMS) +noinst_HEADERS = \ + t_utils.h + all: $(check_PROGRAMS) -- cgit