summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTushar Gohad <tushar.gohad@intel.com>2015-12-10 06:23:51 -0700
committerTushar Gohad <tushar.gohad@intel.com>2015-12-10 06:27:02 -0700
commit4315f2fecdcd85572ed36f2b1b17f635976f7ceb (patch)
tree6e9611f61ca8439bfcf6107049853cfdc193293b /doc
parent02fe1dc7cccbf87891705dd42c9d3b38706624f1 (diff)
downloadliberasurecode-4315f2fecdcd85572ed36f2b1b17f635976f7ceb.tar.gz
Minor doc automake fixes
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 31804cb..c5a3b4b 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -1,4 +1,4 @@
-DOC_MODULE="liberasurecode"
+DOC_MODULE=@PACKAGE@
HTML_DIR=$(datadir)/$(DOC_MODULE)/html
TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)
@@ -16,14 +16,14 @@ clean-local:
rm -rf html
install-data-local: html
- ../install-sh -d $(DESTDIR)$(TARGET_DIR)
+ $(top_srcdir)/install-sh -d $(DESTDIR)$(TARGET_DIR)
(installfiles=`echo html/*`; \
if test "$$installfiles" = 'html/*'; \
then echo '-- Nothing to install' ; \
else \
for i in $$installfiles; do \
echo '-- Installing '$$i ; \
- ../install-sh $$i $(DESTDIR)$(TARGET_DIR); \
+ $(top_srcdir)/install-sh $$i $(DESTDIR)$(TARGET_DIR); \
done; \
fi)