summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Conti <jason.conti@gmail.com>2011-11-21 00:17:23 +0100
committerJürg Billeter <j@bitron.ch>2011-11-30 15:02:46 +0100
commit419832ffd5e9c497cc602c31dd9e009e153e02a1 (patch)
tree783f4720baee8865b24adca612d64bbff2cccaaa
parentc9301d7be7ab7a35de88532a53e82f4690f3c351 (diff)
downloadvala-419832ffd5e9c497cc602c31dd9e009e153e02a1.tar.gz
docs: Rename the .devhelp2 file to match the directory name
When searching for devhelp books, devhelp expects the .devhelp2 filename to match the directory name. Fixes bug 664167.
-rw-r--r--doc/vala/Makefile.am10
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/vala/Makefile.am b/doc/vala/Makefile.am
index 9e359c985..c980cf6a0 100644
--- a/doc/vala/Makefile.am
+++ b/doc/vala/Makefile.am
@@ -1,6 +1,8 @@
NULL =
-bookdir=$(datadir)/devhelp/books/vala@PACKAGE_SUFFIX@
+book_name=vala@PACKAGE_SUFFIX@
+
+bookdir=$(datadir)/devhelp/books/$(book_name)
chapter_data = \
overview.html \
@@ -21,7 +23,7 @@ chapter_data = \
built_data = \
index.html \
$(chapter_data) \
- vala.devhelp2 \
+ $(book_name).devhelp2 \
$(NULL)
if HAVE_XSLTPROC
@@ -36,8 +38,8 @@ index.html: $(book_sources) xhtml.xsl
$(chapter_data): index.html
-vala.devhelp2: $(book_sources) devhelp.xsl
- $(AM_V_GEN)$(XSLTPROC) --xinclude $(srcdir)/devhelp.xsl $(srcdir)/index.xml > vala.devhelp2
+$(book_name).devhelp2: $(book_sources) devhelp.xsl
+ $(AM_V_GEN)$(XSLTPROC) --xinclude $(srcdir)/devhelp.xsl $(srcdir)/index.xml > $(book_name).devhelp2
book_sources = \
index.xml \