From: Michal Vaner Date: Thu, 11 Sep 2008 12:32:10 +0000 (+0200) Subject: Doc. system: fix definition duplicities X-Git-Tag: holmes-import~312 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=f0e01b2130cab499472ce6ae4e97cf17fb60b124;p=libucw.git Doc. system: fix definition duplicities They were caused by appending to a deflist instead of overwriting. If the original file was changed and documentation recompiled, new definitions were added to the old ones. --- diff --git a/build/doc-extract b/build/doc-extract index e3f052ce..a5af0e4e 100755 --- a/build/doc-extract +++ b/build/doc-extract @@ -18,7 +18,7 @@ if( defined $outname ) { } my $hasdump; if( defined $defdump ) { - open DUMP, ">>$defdump" or die "Could not write definition dump $defdump ($!)\n"; + open DUMP, ">$defdump" or die "Could not write definition dump $defdump ($!)\n"; $hasdump = 1; }