* Fixed an uninitialized value when converting from a .src.rpm.

This commit is contained in:
joey
2000-05-30 04:44:06 +00:00
parent 2ab8c2557c
commit 13f031a9bf
2 changed files with 8 additions and 1 deletions

View File

@@ -189,8 +189,9 @@ sub unpack {
# last file, after all! Second, it makes the -d # last file, after all! Second, it makes the -d
# test below fire, which saves us from trying to # test below fire, which saves us from trying to
# fix a parent directory twice. # fix a parent directory twice.
($file)=$file=~m:(.*)/.*?:; $file=$1 if $file=~m:(.*)/.*?:;
my $dircollect=''; my $dircollect='';
foreach my $dir (split(/\//,$file)) { foreach my $dir (split(/\//,$file)) {
$dircollect.="$dir/"; $dircollect.="$dir/";
# Use a hash to prevent duplicate chmods. # Use a hash to prevent duplicate chmods.

6
debian/changelog vendored
View File

@@ -1,3 +1,9 @@
alien (7.5) unstable; urgency=low
* Fixed an uninitialized value when converting from a .src.rpm.
-- Joey Hess <joeyh@debian.org> Mon, 29 May 2000 21:42:38 -0700
alien (7.4) unstable; urgency=low alien (7.4) unstable; urgency=low
* Corrected typo that broke Deb.pm, Closes: #64559 * Corrected typo that broke Deb.pm, Closes: #64559