diff options
author | Joey Hess <joey@kitenet.net> | 2011-02-21 19:23:59 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-02-21 19:23:59 -0400 |
commit | 562b0f8159e468ed783506dd73017958e1286be9 (patch) | |
tree | 4ad3eb5d34b3626e89e37f9f0a6c6443d9504e92 | |
parent | 600069efff1e329e09c26fe6dd8b9418100a19d8 (diff) | |
download | debootstrap-562b0f8159e468ed783506dd73017958e1286be9.tar.gz |
Remove 5 second sleeps when debootstrap finds additional required dependencies. d-i just got that much faster.
-rw-r--r-- | debian/changelog | 5 | ||||
-rwxr-xr-x | debootstrap | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index f133456..1e37533 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,12 @@ debootstrap (1.0.28) UNRELEASED; urgency=low + [ Miguel Figueiredo ] * Fix for ar usage, thanks to Guillem Jover. Closes: #598729 + [ Joey Hess ] + * Remove 5 second sleeps when debootstrap finds additional required + dependencies. d-i just got that much faster. + -- Miguel Figueiredo <elmig@debianpt.org> Thu, 10 Feb 2011 21:45:23 +0000 debootstrap (1.0.27) unstable; urgency=low diff --git a/debootstrap b/debootstrap index 9b0b7f1..0fc16d4 100755 --- a/debootstrap +++ b/debootstrap @@ -525,7 +525,6 @@ if am_doing_phase finddebs; then if [ "$baseU" != "" ]; then info REDUNDANTBASE "Found packages in base already in required: %s" "$baseU" - sleep 5 fi info RESOLVEREQ "Resolving dependencies of required packages..." @@ -538,11 +537,9 @@ if am_doing_phase finddebs; then baseX=$(without "$base" "$baseX") if [ "$requiredX" != "" ]; then info NEWREQUIRED "Found additional required dependencies: %s" "$requiredX" - sleep 5 fi if [ "$baseX" != "" ]; then info NEWBASE "Found additional base dependencies: %s" "$baseX" - sleep 5 fi fi |