Make install failing to find install-sh when installing docs

This commit is contained in:
Kevin Greenan
2015-01-12 14:15:12 -08:00
parent 2e153037af
commit 380731b449
3 changed files with 8 additions and 1 deletions

1
.gitignore vendored
View File

@@ -55,4 +55,5 @@ libtool
# doxygen documentation
^doc/.*\.doxytag
^doc/html
^doc/latex
*doxygen.cfg

View File

@@ -23,7 +23,7 @@ install-data-local: html
else \
for i in $$installfiles; do \
echo '-- Installing '$$i ; \
$(INSTALL_DATA) $$i $(DESTDIR)$(TARGET_DIR); \
../install-sh $$i $(DESTDIR)$(TARGET_DIR); \
done; \
fi)

View File

@@ -20,6 +20,12 @@ liberasurecode_la_SOURCES = \
backends/jerasure/jerasure_rs_cauchy.c \
backends/isa-l/isa_l_vand.c
# Install additional header files
liberasurecodeincludedir = $(includedir)
liberasurecodeinclude_HEADERS = \
../include/erasurecode/erasurecode.h \
../include/erasurecode/erasurecode_helpers.h
liberasurecode_la_CPPFLAGS = -Werror @GCOV_FLAGS@
liberasurecode_la_LIBADD = \
builtin/xor_codes/libXorcode.la -lpthread -lm @GCOV_LDFLAGS@