From: Steinar H. Gunderson Date: Wed, 7 Mar 2007 18:09:58 +0000 (+0000) Subject: Fix some scoping issues. X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=commitdiff_plain;h=e6282243da4697d24b03c094e90f750daeb68cdf;ds=sidebyside Fix some scoping issues. --- diff --git a/bugcfg.pm b/bugcfg.pm index 678fc38..d4f700d 100644 --- a/bugcfg.pm +++ b/bugcfg.pm @@ -37,11 +37,11 @@ if ($host eq "master" or $host eq "spohr" or $host eq "rietz") { die "Unknown machine, please configure paths in bugcfg.pm\n"; } -my $btsURL = "http://www.debian.org/Bugs/"; -my @architectures = ( "i386", "m68k", "alpha", "sparc", "powerpc", "arm", "hppa", "ia64", "mips", "mipsel", "s390" ); -my @sections = ( "main", "contrib", "non-free" ); -my @priorities = ( "serious", "grave", "critical" ); -my @skiptags = ( ); +our $btsURL = "http://www.debian.org/Bugs/"; +our @architectures = ( "i386", "m68k", "alpha", "sparc", "powerpc", "arm", "hppa", "ia64", "mips", "mipsel", "s390" ); +our @sections = ( "main", "contrib", "non-free" ); +our @priorities = ( "serious", "grave", "critical" ); +our @skiptags = ( ); 1;