Changeset 661 in MondoRescue for branches/2.0.8/tools/mkchangelog.pl


Ignore:
Timestamp:
Jun 9, 2006, 10:38:38 AM (18 years ago)
Author:
bcornec
Message:

changelog are now generated
website/news.shtml and website/latest-news.html are now generated
mknewshtml.pl generates them
build process improved again

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0.8/tools/mkchangelog.pl

    r656 r661  
    9393    $tmp = <INPUT>;
    9494    while ($tmp !~ /^$/) {
    95         print OUTPUT "  * $tmp";
     95        if ($dtype eq "deb") {
     96            print OUTPUT "  * $tmp";
     97        }
     98        else {
     99            print OUTPUT "$tmp";
     100        }
    96101        last if (eof(INPUT));
    97102        $tmp = <INPUT>;
Note: See TracChangeset for help on using the changeset viewer.