diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2002-03-07 16:41:36 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2002-03-07 16:41:36 +0000 |
commit | d2a8fa639ac873f8601be3b17b23f646d1d03411 (patch) | |
tree | 3b1429adc30ee0684b43e14c108c4528654b7777 /perl-install/modules.pm | |
parent | d47afe4be749b32a569498ce340f28d2b49e2e65 (diff) | |
download | drakx-d2a8fa639ac873f8601be3b17b23f646d1d03411.tar drakx-d2a8fa639ac873f8601be3b17b23f646d1d03411.tar.gz drakx-d2a8fa639ac873f8601be3b17b23f646d1d03411.tar.bz2 drakx-d2a8fa639ac873f8601be3b17b23f646d1d03411.tar.xz drakx-d2a8fa639ac873f8601be3b17b23f646d1d03411.zip |
try to avoid segfaulting probeall stuff
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index dbbe2652c..f6756d594 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -679,6 +679,7 @@ sub read_conf { while (my ($k, $v) = each %c) { if (my $a = $v->{alias}) { local $c{$a}{alias}; + delete $v->{probeall}; add2hash($c{$a}, $v); } } |