diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-04-17 12:35:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-04-17 12:35:09 +0000 |
commit | 115b7adeee27d6c89f01a668e4e9d9b7239affaf (patch) | |
tree | 7da4e99c28d89b2a1f13d95aa37171cf325d848b | |
parent | 945c51c3d8906e539fee88d06369912e545bda46 (diff) | |
download | rpmtools-115b7adeee27d6c89f01a668e4e9d9b7239affaf.tar rpmtools-115b7adeee27d6c89f01a668e4e9d9b7239affaf.tar.gz rpmtools-115b7adeee27d6c89f01a668e4e9d9b7239affaf.tar.bz2 rpmtools-115b7adeee27d6c89f01a668e4e9d9b7239affaf.tar.xz rpmtools-115b7adeee27d6c89f01a668e4e9d9b7239affaf.zip |
no_comment
-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 |