From: Guillem Jover Date: Thu, 6 Sep 2007 01:50:38 +0000 (+0300) Subject: Do not declare $host_arch as an 'our' variable X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f0020be7eac8357f5ce53f978b63f1fd4181be2;p=dpkg Do not declare $host_arch as an 'our' variable --- diff --git a/ChangeLog b/ChangeLog index 3f5a792d..79844675 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-09-06 Guillem Jover + + * scripts/dpkg-genchanges.pl ($host_arch): Do not declare as 'our'. + * scripts/dpkg-gencontrol.pl ($host_arch): Likewise. + 2007-09-06 Guillem Jover * scripts/dpkg-genchanges.pl (%fieldimps): Remove unused variable. diff --git a/scripts/dpkg-genchanges.pl b/scripts/dpkg-genchanges.pl index 1709c66a..7b54c47b 100755 --- a/scripts/dpkg-genchanges.pl +++ b/scripts/dpkg-genchanges.pl @@ -15,7 +15,6 @@ our (%f, %fi); our %p2i; our %substvar; our $sourcepackage; -our $host_arch; textdomain("dpkg-dev"); diff --git a/scripts/dpkg-gencontrol.pl b/scripts/dpkg-gencontrol.pl index 12ea429c..414d8a69 100755 --- a/scripts/dpkg-gencontrol.pl +++ b/scripts/dpkg-gencontrol.pl @@ -16,7 +16,6 @@ our (%f, %fi); our %p2i; our @pkg_dep_fields; our $sourcepackage; -our $host_arch; textdomain("dpkg-dev");