diff options
-rwxr-xr-x | extract_archive | 2 | ||||
-rw-r--r-- | genhdlists | 2 | ||||
-rw-r--r-- | rpmtools.spec | 5 |
3 files changed, 6 insertions, 3 deletions
diff --git a/extract_archive b/extract_archive index 7bee205..efa3ff4 100755 --- a/extract_archive +++ b/extract_archive @@ -199,7 +199,7 @@ sub main { foreach my $file (@file) { #- check for presence of file, but do not abort, continue with others. - $data{$_} or print STDERR "unable to find file $_ in archive $archivename\n"; + $data{$file} or print STDERR "unable to find file $file in archive $archivename\n"; my $newfile = "$dir/$file"; @@ -21,7 +21,7 @@ foreach (<F>) { my $command = "genhdlist_cz2"; $noclean and $command .= " --noclean"; -e $depslist and $command .= " --ordered-depslist $depslist"; - $command .= " -o $hdlist $root/$dir"; + $command .= " -o $root/Mandrake/base/$hdlist $root/$dir"; system($command); system("touch $root/Mandrake/base/$hdlist"); diff --git a/rpmtools.spec b/rpmtools.spec index acf279f..d94c5a9 100644 --- a/rpmtools.spec +++ b/rpmtools.spec @@ -1,5 +1,5 @@ %define name rpmtools -%define release 16mdk +%define release 17mdk # do not modify here, see Makefile in the CVS %define version 1.1 @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT /usr/bin/genfilelist %changelog +* Fri Apr 14 2000 Pixel <pixel@mandrakesoft.com> 1.1-17mdk +- fix buggy extract_archive + * Fri Apr 14 2000 Pixel <pixel@mandrakesoft.com> 1.1-16mdk - updated genhdlists |