aboutsummaryrefslogtreecommitdiffstats
path: root/URPM
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-11-21 02:25:13 +0000
committerThierry Vignaud <tv@mageia.org>2012-11-21 02:25:13 +0000
commit664e82d3c39db38db217f7fc1ca277253f6964d9 (patch)
tree6ae5409ea432034ade815addc575b9a8003bd33b /URPM
parente4e8ea090c73cd6826d125d26fdc1e2463938048 (diff)
downloadperl-URPM-664e82d3c39db38db217f7fc1ca277253f6964d9.tar
perl-URPM-664e82d3c39db38db217f7fc1ca277253f6964d9.tar.gz
perl-URPM-664e82d3c39db38db217f7fc1ca277253f6964d9.tar.bz2
perl-URPM-664e82d3c39db38db217f7fc1ca277253f6964d9.tar.xz
perl-URPM-664e82d3c39db38db217f7fc1ca277253f6964d9.zip
further bump threshold for detecting looping forever
Diffstat (limited to 'URPM')
-rw-r--r--URPM/Resolve.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/URPM/Resolve.pm b/URPM/Resolve.pm
index 6ac7ad6..c5aa514 100644
--- a/URPM/Resolve.pm
+++ b/URPM/Resolve.pm
@@ -1057,7 +1057,7 @@ sub resolve_requested__no_suggests_ {
}
# safety:
- if ($count++ > 10000) {
+ if ($count++ > 50000) {
die("detecting looping forever while trying to resolve dependancies.\n"
. "Aborting... Try again with '-vv --debug' options");
}