Alexandre Julliard : wine_release: Avoid truncation issues with man2html.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Sep 12 13:08:15 CDT 2006


Module: tools
Branch: master
Commit: 213e166e771e77e912c714d89852412e8aacaf6c
URL:    http://source.winehq.org/git/?p=tools.git;a=commit;h=213e166e771e77e912c714d89852412e8aacaf6c

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Thu Aug 24 18:25:29 2006 +0200

wine_release: Avoid truncation issues with man2html.

---

 wine_release |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/wine_release b/wine_release
index 60bd0ea..5d2fde7 100755
--- a/wine_release
+++ b/wine_release
@@ -68,7 +68,7 @@ for f in $manpages
 do
   name=`basename $f .man`
   make -C `dirname $f` $name.man
-  nroff -man $f | ../bin/man2html | ../html2template -o $templates_dir/en/docs/$name.template
+  nroff -man $f | ../bin/man2html --pgsize=100000 | ../html2template -o $templates_dir/en/docs/$name.template
 done
 
 git diff --stat wine-$oldver wine-$version >../ds$version.txt




More information about the wine-cvs mailing list