use wget not LWP, as we do not have LWP in the ref platform linux b=427690 r=nthomas

This commit is contained in:
rhelmer%mozilla.com 2008-04-09 20:10:07 +00:00
Родитель e775b32784
Коммит 0f4d5a033e
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -6,8 +6,6 @@ use Bootstrap::Step;
use Bootstrap::Config;
@ISA = ("Bootstrap::Step");
use LWP::Simple;
sub Execute {
my $this = shift;
@ -23,7 +21,7 @@ sub Execute {
$this->Log(msg => 'Looking for url ' . $url);
while (! head($url)) {
while (system('wget', '-q', '--spider', $url)) {
sleep(10);
}