diff options
author | Francois Pons <fpons@mandriva.com> | 2000-10-19 15:28:25 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-10-19 15:28:25 +0000 |
commit | 4fdd672cf5fde8834a203e0ccb165daa9c8a1496 (patch) | |
tree | 43c1ae3a659daa009a52bcb32bb1a0e49157ce05 /rpmtools.pm | |
parent | ac2e4abe983f7de769ecef5e35f9c33f0bc88d7d (diff) | |
download | rpmtools-4fdd672cf5fde8834a203e0ccb165daa9c8a1496.tar rpmtools-4fdd672cf5fde8834a203e0ccb165daa9c8a1496.tar.gz rpmtools-4fdd672cf5fde8834a203e0ccb165daa9c8a1496.tar.bz2 rpmtools-4fdd672cf5fde8834a203e0ccb165daa9c8a1496.tar.xz rpmtools-4fdd672cf5fde8834a203e0ccb165daa9c8a1496.zip |
*** empty log message ***
Diffstat (limited to 'rpmtools.pm')
-rw-r--r-- | rpmtools.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rpmtools.pm b/rpmtools.pm index 8b194d3..b3bc6d9 100644 --- a/rpmtools.pm +++ b/rpmtools.pm @@ -79,6 +79,7 @@ sub compute_depslist { my @requires = keys %requires; while (my $req = shift @requires) { + $req eq 'basesystem' and next; #- never need to requires basesystem directly as always required! what a speed up! ref $req or $req = $params->{provides}{$req} || ($req =~ /rpmlib\(/ ? [] : [ ($req !~ /NOTFOUND_/ && "NOTFOUND_") . $req ]); if (@$req > 1) { |