~ubuntu-branches/debian/jessie/basket/jessie

« back to all changes in this revision

Viewing changes to admin/bcheck.pl

  • Committer: Bazaar Package Importer
  • Author(s): Sune Vuorela
  • Date: 2008-06-25 20:11:23 UTC
  • mfrom: (4.1.11 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080625201123-06wsi9dla3rs3486
Tags: 1.0.2-5
* Also allow automake 1.10 usage - and just build-dep on automake i
  (Closes: #487981)
* Bye bye ana

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
        print "-----------------------------------------------\n";
69
69
        print @new;
70
70
        $haschanges = 1;
71
 
        return;
 
71
        return $haschanges;
72
72
    }
73
73
 
74
74
    print $old[0];
84
84
        next if ($o eq $n);
85
85
 
86
86
        if(defined($class) and $n =~ /^(\d+\s+)\w+(::\S+\s*.*)$/) {
87
 
            print "comparing >$n< against >$1$class$2<\n";
88
87
            next if ($n eq "$1$class$2");
89
88
        }
90
89
 
118
117
    chop;
119
118
 
120
119
    s/0x[0-9a-fA-F]+/0x......../g;
 
120
    s/base size=/size=/g;
 
121
    s/base align=/align=/g;
121
122
 
122
123
    $chunk .= $_ . "\n";
123
124