Fix filehandle typo when configuring multiarch (Closes: #695843)
git-svn-id: http://emdebian.org/svn/current@8422 563faec7-e20c-0410-992a-a66f704d0ccd
This commit is contained in:
parent
330c7c46f8
commit
5b6b9277e6
2 changed files with 3 additions and 2 deletions
1
debian/changelog
vendored
1
debian/changelog
vendored
|
@ -2,6 +2,7 @@ multistrap (2.1.22) experimental; urgency=low
|
||||||
|
|
||||||
* Support marking dependencies as auto-installed using apt-mark.
|
* Support marking dependencies as auto-installed using apt-mark.
|
||||||
(Closes: #702036)
|
(Closes: #702036)
|
||||||
|
* Fix filehandle typo when configuring multiarch (Closes: #695843)
|
||||||
|
|
||||||
-- Neil Williams <codehelp@debian.org> Thu, 21 Mar 2013 19:21:56 +0000
|
-- Neil Williams <codehelp@debian.org> Thu, 21 Mar 2013 19:21:56 +0000
|
||||||
|
|
||||||
|
|
|
@ -210,9 +210,9 @@ if (($olddpkg == 0) and (scalar (@foreignarches) > 0)) {
|
||||||
}
|
}
|
||||||
close (MA);
|
close (MA);
|
||||||
open (VMA, ">${dir}${dpkgdir}arch");
|
open (VMA, ">${dir}${dpkgdir}arch");
|
||||||
print MA "$host\n";
|
print VMA "$host\n";
|
||||||
foreach my $farch (@foreignarches) {
|
foreach my $farch (@foreignarches) {
|
||||||
print MA "$farch\n";
|
print VMA "$farch\n";
|
||||||
}
|
}
|
||||||
close (VMA);
|
close (VMA);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue