Merge branch 'thh-warnings' into next
* thh-warnings: Change handling of warnings.
This commit is contained in:
commit
439c85a280
|
@ -1,4 +1,4 @@
|
|||
#! /usr/bin/perl -W
|
||||
#! /usr/bin/perl
|
||||
#
|
||||
# feedlog.pl
|
||||
#
|
||||
|
@ -18,6 +18,7 @@ BEGIN {
|
|||
push(@INC, dirname($0));
|
||||
}
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use NewsStats;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#! /usr/bin/perl -W
|
||||
#! /usr/bin/perl
|
||||
#
|
||||
# gatherstats.pl
|
||||
#
|
||||
|
@ -18,6 +18,7 @@ BEGIN {
|
|||
push(@INC, dirname($0));
|
||||
}
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use NewsStats qw(:DEFAULT :TimePeriods ListNewsgroups ParseHierarchies ReadGroupList);
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#! /usr/bin/perl -W
|
||||
#! /usr/bin/perl
|
||||
#
|
||||
# groupstats.pl
|
||||
#
|
||||
|
@ -18,6 +18,7 @@ BEGIN {
|
|||
push(@INC, dirname($0));
|
||||
}
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use NewsStats qw(:DEFAULT :TimePeriods :Output :SQLHelper ReadGroupList);
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#! /usr/bin/perl -W
|
||||
#! /usr/bin/perl
|
||||
#
|
||||
# install.pl
|
||||
#
|
||||
|
@ -18,6 +18,7 @@ BEGIN {
|
|||
push(@INC, dirname($0).'/..');
|
||||
}
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use NewsStats qw(:DEFAULT);
|
||||
|
||||
|
|
Loading…
Reference in a new issue