Hello, when i run make inside the ~wine/documentation directory i get an error when the pdf is created. The fix is easy for me, just an additional parameter (-s) for the command db2pdf.
But before i send the attached patch to wine-patches i like to know if anyone can run make successful in the documentation directory. In this case we may have to add a check in the configure script. If someone is able to build the documentation successful please post the output of "db2pdf -v". Thanks Stefan
--- wine-20020411/documentation/Makefile.in Fri Mar 1 17:48:51 2002 +++ wine/documentation/Makefile.in Sat Apr 13 11:04:53 2002 @@ -59,7 +59,7 @@ $(DB2HTML) $(BOOKNAME).sgml $(BOOKNAME).pdf: $(BOOK_SRCS) - db2pdf -d ./print.dsl $(BOOKNAME).sgml > /dev/null + db2pdf -d -s ./print.dsl $(BOOKNAME).sgml > /dev/null $(BOOKNAME).ps: $(BOOK_SRCS) db2ps $(BOOKNAME).sgml > /dev/null
