From 7b5b2c1709e110d98ad8cab1dabd211890fbc26d Mon Sep 17 00:00:00 2001 From: codehelp Date: Sat, 3 Apr 2010 10:23:32 +0000 Subject: [PATCH] Allow empty keyring values. git-svn-id: http://emdebian.org/svn/current@7002 563faec7-e20c-0410-992a-a66f704d0ccd --- debian/changelog | 6 ++++++ em_multistrap | 1 + 2 files changed, 7 insertions(+) diff --git a/debian/changelog b/debian/changelog index 073be14..42a3cb7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +emdebian-rootfs (2.0.10) unstable; urgency=low + + * Allow empty keyring values. + + -- Neil Williams Sat, 03 Apr 2010 11:18:02 +0100 + emdebian-rootfs (2.0.9) unstable; urgency=low * Fix typos in translated strings. diff --git a/em_multistrap b/em_multistrap index ff7bc93..5f3a6f2 100755 --- a/em_multistrap +++ b/em_multistrap @@ -277,6 +277,7 @@ my $k; foreach my $pkg (values %keyrings) { next if (not defined $pkg); + next if ("" eq "$pkg"); my $status = `LC_ALL=C dpkg -s $pkg`; next if $status =~ /Status: install ok installed/; $k .= "$pkg ";