From 837c76c107f99aa4155d67d35c5efca4e4d6cc30 Mon Sep 17 00:00:00 2001 From: Angelo Haller Date: Mon, 24 Nov 2014 17:04:31 +0100 Subject: [PATCH] Fix location of installed header files. This fixes the issue of missing includes when using the header . --- src/Makefile.am | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 070f545..f018e30 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -7,11 +7,8 @@ lib_LTLIBRARIES = libJerasure.la libJerasure_la_SOURCES = galois.c jerasure.c reed_sol.c cauchy.c liberation.c libJerasure_la_LDFLAGS = -version-info 2:0:0 libJerasure_la_LIBADD = -lgf_complete -include_HEADERS = ../include/jerasure.h - -# Install additional Jerasure header files in their own directory. -jerasureincludedir = $(includedir)/jerasure -jerasureinclude_HEADERS = \ +include_HEADERS = \ + ../include/jerasure.h \ ../include/cauchy.h \ ../include/galois.h \ ../include/liberation.h \