From: Noah Watkins Date: Thu, 9 Jan 2014 17:15:47 +0000 (-0800) Subject: osd: add missing header to install list X-Git-Tag: v0.77~36^2^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1063%2Fhead;p=ceph.git osd: add missing header to install list Signed-off-by: Noah Watkins --- diff --git a/src/osd/ErasureCodePluginJerasure/Makefile.am b/src/osd/ErasureCodePluginJerasure/Makefile.am index 85179ead1c7..51ef83bf964 100644 --- a/src/osd/ErasureCodePluginJerasure/Makefile.am +++ b/src/osd/ErasureCodePluginJerasure/Makefile.am @@ -7,13 +7,16 @@ libec_jerasure_la_SOURCES = \ osd/ErasureCodePluginJerasure/jerasure.c \ osd/ErasureCodePluginJerasure/liberation.c \ osd/ErasureCodePluginJerasure/reed_sol.c + noinst_HEADERS += \ osd/ErasureCodePluginJerasure/ErasureCodeJerasure.h \ osd/ErasureCodePluginJerasure/cauchy.h \ osd/ErasureCodePluginJerasure/galois.h \ osd/ErasureCodePluginJerasure/jerasure.h \ osd/ErasureCodePluginJerasure/liberation.h \ - osd/ErasureCodePluginJerasure/reed_sol.h + osd/ErasureCodePluginJerasure/reed_sol.h \ + osd/ErasureCodePluginJerasure/vectorop.h + libec_jerasure_la_CFLAGS = ${AM_CFLAGS} libec_jerasure_la_CXXFLAGS= ${AM_CXXFLAGS} libec_jerasure_la_LIBADD = $(PTHREAD_LIBS) $(EXTRALIBS)