diff options
author | Francois Pons <fpons@mandriva.com> | 2001-02-27 17:05:32 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2001-02-27 17:05:32 +0000 |
commit | 6977c59931563c95a4ea2eaac80087d28771cdae (patch) | |
tree | 1ff2e6053037407eb88e8d75cb0162afd9478e8a | |
parent | 6f0752912256cbf1cdc2cf1ed3e3b59ae92e7e5f (diff) | |
download | rpmtools-6977c59931563c95a4ea2eaac80087d28771cdae.tar rpmtools-6977c59931563c95a4ea2eaac80087d28771cdae.tar.gz rpmtools-6977c59931563c95a4ea2eaac80087d28771cdae.tar.bz2 rpmtools-6977c59931563c95a4ea2eaac80087d28771cdae.tar.xz rpmtools-6977c59931563c95a4ea2eaac80087d28771cdae.zip |
*** empty log message ***
-rwxr-xr-x | gendistrib | 8 | ||||
-rw-r--r-- | rpmtools.spec | 6 |
2 files changed, 9 insertions, 5 deletions
@@ -29,7 +29,7 @@ my ($noclean, $nohdlists, $nobasefiles, @root, @hdlists) = 0; @root > 0 && @ARGV == 0 or die "usage: gendistrib [--noclean] [--nohdlists] [--nobasefiles] --distrib <root distrib> <root_distrib2> ...\n"; -my ($i, $root) = (0, $root[0]); +my $root = $root[0]; my ($depslist, $provides, $compss, $hdlists) = ("$root/Mandrake/base/depslist.ordered", "$root/Mandrake/base/provides", "$root/Mandrake/base/compss", @@ -55,15 +55,15 @@ foreach (<F>) { close F; unless ($nohdlists) { - foreach (@hdlists) { - my ($hdlist, $dir, $descr) = @$_; + for (0..$#hdlists) { + my ($hdlist, $dir, $descr) = @{$hdlists[$_]}; #- try to find the right repository where can be found the directory #- listed in the hdlist file. #- if the number of root is equal the number of medium, assume a medium #- foreach root, else try to find a valid root containing the medium. if (scalar(@hdlists ) == scalar(@root)) { - $root = $root[$i]; + $root = $root[$_]; } else { foreach (@root) { -d "$_/$dir" and $root = $_, last; diff --git a/rpmtools.spec b/rpmtools.spec index 270847d..2a1ea45 100644 --- a/rpmtools.spec +++ b/rpmtools.spec @@ -1,5 +1,5 @@ %define name rpmtools -%define release 5mdk +%define release 6mdk # do not modify here, see Makefile in the CVS %define version 2.3 @@ -51,6 +51,10 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/perl5/man/*/* %changelog +* Tue Feb 27 2001 François Pons <fpons@mandrakesoft.com> 2.3-6mdk +- fixed gendistrib with multi source of same number as + media listed in hdlists file. + * Mon Feb 26 2001 François Pons <fpons@mandrakesoft.com> 2.3-5mdk - improved base flag usage so obsoleted use_base_flag. |