Point to index.html instead of `evolution.sgml'.

* C/evolution-C.omf: Point to index.html instead of
`evolution.sgml'.

* sgmldocs.make: Install the SGML files in evolution/sgml, and the
HTML files in evolution.

svn path=/trunk/; revision=14698
This commit is contained in:
Ettore Perazzoli
2001-11-14 19:52:27 +00:00
parent 6838fe8bf7
commit 4647e0c39c
3 changed files with 20 additions and 4 deletions

View File

@ -7,8 +7,8 @@
<subject>
<category>GNOME|Applications</category>
</subject>
<format mime="text/sgml"/>
<identifier url="evolution.sgml"/>
<format mime="text/html"/>
<identifier url="index.html"/>
<language code="C"/>
</resource>
</omf>

View File

@ -1,3 +1,14 @@
2001-11-14 Ettore Perazzoli <ettore@ximian.com>
[Workaround for Nautilus/Scrollkeeper bug that prevents our SGML
files to generate the docs properly; pointed out by Greg Leblanc.]
* C/evolution-C.omf: Point to index.html instead of
`evolution.sgml'.
* sgmldocs.make: Install the SGML files in evolution/sgml, and the
HTML files in evolution.
2001-10-29 Aaron Weber <aaron@ximian.com>
* C/apx-bugs.sgml: typos, redescribe 1.1 bugs. Re-validated.

View File

@ -51,7 +51,7 @@ omf: omf_timestamp
omf_timestamp: $(omffile)
-for file in $(srcdir)/$(omffile); do \
basefile=`echo $$file | sed -e 's,^.*/,,'`; \
scrollkeeper-preinstall $(docdir)/$(docname).sgml $$file $(omf_dir)/$$basefile; \
scrollkeeper-preinstall $(docdir)/index.html $$file $(omf_dir)/$$basefile; \
done
touch omf_timestamp
@ -93,7 +93,12 @@ app-dist-hook: index.html
install-data-am: index.html omf
-$(mkinstalldirs) $(DESTDIR)$(docdir)/stylesheet-images
-$(mkinstalldirs) $(DESTDIR)$(docdir)/figures
-cp $(srcdir)/$(sgml_files) $(DESTDIR)$(docdir)
-$(mkinstalldirs) $(DESTDIR)$(docdir)/sgml
-for file in $(sgml_files); do \
$(INSTALL_DATA) $(srcdir)/$$file $(DESTDIR)$(docdir)/sgml ; \
done
-for file in $(srcdir)/$(docname)/*.html $(srcdir)/$(docname)/*.css; do \
basefile=`echo $$file | sed -e 's,^.*/,,'`; \
$(INSTALL_DATA) $$file $(DESTDIR)$(docdir)/$$basefile; \