From 8f2fe8eb2211cc454eba22cf681162171931e019 Mon Sep 17 00:00:00 2001 From: joey Date: Mon, 1 Apr 2002 04:06:14 +0000 Subject: [PATCH] * Fixed an unfortunate typo in Rpm.pm, Closes: #140742 --- Alien/Package/Rpm.pm | 2 +- debian/changelog | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Alien/Package/Rpm.pm b/Alien/Package/Rpm.pm index 8d2db61..8ae808e 100644 --- a/Alien/Package/Rpm.pm +++ b/Alien/Package/Rpm.pm @@ -98,7 +98,7 @@ sub scan { # Get the filelist. $this->filelist([map { chomp; $_ } `LANG=C rpm -qpl $file`]); - if (defined $this->filelist->[0] &&& + if (defined $this->filelist->[0] && $this->filelist->[0] eq '(contains no files)') { $this->filelist([]); } diff --git a/debian/changelog b/debian/changelog index af2e9f0..3d28c54 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +alien (8.04) unstable; urgency=low + + * Fixed an unfortunate typo in Rpm.pm, Closes: #140742 + + -- Joey Hess Sun, 31 Mar 2002 23:05:30 -0500 + alien (8.03) unstable; urgency=low * Should avoid warning message, Closes: #140286