From: Jason Conti Date: Sun, 20 Nov 2011 23:17:23 +0000 (+0100) Subject: docs: Rename the .devhelp2 file to match the directory name X-Git-Tag: 0.14.1~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=419832ffd5e9c497cc602c31dd9e009e153e02a1;p=thirdparty%2Fvala.git 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. --- 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 \