]> git.donarmstrong.com Git - bugscan.git/blobdiff - bugcfg.pm
Fix some scoping issues.
[bugscan.git] / bugcfg.pm
index 678fc38b20ed567879862f26b425399b3bc5cea4..d4f700d602ac2590c57c8e275e1ff069b8a8714a 100644 (file)
--- 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;