Hi,
I've never had any luck with the default make rules for the html
books. I'm running (more or less) Mandrake 8, and it seems that
db2html from that distribution doesn't respect the current directory
when computing relative paths, so it always fails to find the .dsl
file and bombs. The following patch fixes this for me, and hopefully
should work for everyone else too.
You'll need to rerun configure after applying.
Cheers,
Jon
License: X11
ChangeLog:
Jon Griffiths <jon_p_griffiths@yahoo.com>
+documentation/Makefile.in
Use the full path of the .dsl file for db2html
=====
"Don't wait for the seas to part, or messiahs to come;
Don't you sit around and waste this chance..." - Live
jon_p_griffiths@yahoo.com
__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
--- wine/documentation/Makefile.in Fri Jul 4 17:48:06 2003
+++ wine-develop3/documentation/Makefile.in Thu Jul 17 21:06:09 2003
@@ -87,7 +87,7 @@
.SUFFIXES: .sgml /index.html .pdf .ps
.sgml/index.html:
- $(DB2HTML) -d $(SRCDIR)/default.dsl -o $* $<
+ $(DB2HTML) -d `pwd $(SRCDIR)`/default.dsl $<
.sgml.pdf:
$(DB2PDF) -d $(SRCDIR)/print.dsl $< >/dev/null