summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2014-11-15 17:26:33 +0100
committerSimo Sorce <simo@redhat.com>2015-01-15 13:22:45 -0500
commit8d268e846228f3b2e3bcae59b2c7123affb7610f (patch)
treeaea4eb53d43458a7e2cb18a9d9b694dea9b8ba4c
parent57a9447610eb29c72f606a59d10c211c8d7f41e6 (diff)
downloadgss-proxy-8d268e846228f3b2e3bcae59b2c7123affb7610f.tar.gz
gss-proxy-8d268e846228f3b2e3bcae59b2c7123affb7610f.tar.xz
gss-proxy-8d268e846228f3b2e3bcae59b2c7123affb7610f.zip
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 <lslebodn@redhat.com> Reviewed-by: Simo Sorce <simo@redhat.com>
-rw-r--r--proxy/tests/Makefile.am3
1 files changed, 3 insertions, 0 deletions
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)