nixpkgs/pkgs/tools/typesetting/docbook2x/db2x_texixml-to-stdout.patch
Ludovic Courtès 2d75587897 Docbook2X: Fix --to-stdout' option of docbook2texi', fix Perl dependencies
of all the perl scripts, add dependency on Texinfo since `makeinfo' can be
invoked directly by `docbook2texi --info'.

svn path=/nixpkgs/trunk/; revision=11083
2008-03-12 15:19:54 +00:00

16 lines
514 B
Diff

--- docbook2X-0.8.8/perl/db2x_texixml.pl 2006-04-20 05:02:31.000000000 +0200
+++ docbook2X-0.8.8/perl/db2x_texixml.pl 2008-03-12 15:36:55.000000000 +0100
@@ -432,8 +432,12 @@ sub texi_openfile {
$openstr = '>-';
}
} else {
+ if(not $self->{options}->{'to-stdout'}) {
$openstr .= '> ' . shell_quote($filename);
print "$filename\n"
if $self->{options}->{'list-files'};
+ } else {
+ $openstr = '>-';
+ }
}
}