From e6282243da4697d24b03c094e90f750daeb68cdf Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Wed, 7 Mar 2007 18:09:58 +0000 Subject: [PATCH] Fix some scoping issues. --- bugcfg.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; -- 2.39.2