diff options
author | Jason Conti <jason.conti@gmail.com> | 2011-11-21 00:17:23 +0100 |
---|---|---|
committer | Luca Bruno <lucabru@src.gnome.org> | 2011-11-21 00:19:35 +0100 |
commit | da112cb6cbafe471b0264fe292a5f18b01745d69 (patch) | |
tree | 4393bd732206f1a5f57dcd60e7041af12d4a943a | |
parent | 16fa519730b7b0a4df65179e94b75678371fb361 (diff) | |
download | vala-da112cb6cbafe471b0264fe292a5f18b01745d69.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.am | 10 |
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 \ |