2 Commits
8.82 ... 8.83

Author SHA1 Message Date
Joey Hess
143131c8c0 releasing version 8.83 2010-09-09 08:25:35 -04:00
Joey Hess
0d765b965d Correct handling of arch all packages in deb arch check. Closes: #596209 2010-09-09 08:24:54 -04:00
2 changed files with 11 additions and 3 deletions

View File

@@ -491,9 +491,11 @@ sub build {
# Detect architecture mismatch and abort with a comprehensible # Detect architecture mismatch and abort with a comprehensible
# error message. # error message.
my $arch=$this->arch; my $arch=$this->arch;
my $ret=system("dpkg-architecture", "-i".$arch); if ($arch ne 'all') {
if ($ret != 0) { my $ret=system("dpkg-architecture", "-i".$arch);
die $this->filename." is for architecture ".$this->arch." ; the package cannot be built on this system"."\n"; if ($ret != 0) {
die $this->filename." is for architecture ".$this->arch." ; the package cannot be built on this system"."\n";
}
} }
chdir $this->unpacked_tree; chdir $this->unpacked_tree;

6
debian/changelog vendored
View File

@@ -1,3 +1,9 @@
alien (8.83) unstable; urgency=low
* Correct handling of arch all packages in deb arch check. Closes: #596209
-- Joey Hess <joeyh@debian.org> Thu, 09 Sep 2010 08:24:58 -0400
alien (8.82) unstable; urgency=low alien (8.82) unstable; urgency=low
* Use debhelper compat level v7 when building packages. All changes * Use debhelper compat level v7 when building packages. All changes