diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2012-03-21 12:40:42 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-03-21 12:43:02 +0200 |
commit | 4c40593e3e936e6a966410ab807df4b775fc2464 (patch) | |
tree | 4df1ec13020dd8c46007ff94e8f205b67382a04f /solenv/bin/build.pl | |
parent | 5e553b1ee5d8266b14c1f553d310dd634ae3fb84 (diff) |
$retry_counter and the RETRY label are now unused
Diffstat (limited to 'solenv/bin/build.pl')
-rwxr-xr-x | solenv/bin/build.pl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/solenv/bin/build.pl b/solenv/bin/build.pl index f59d67531d0a..e5e009f6f8ad 100755 --- a/solenv/bin/build.pl +++ b/solenv/bin/build.pl @@ -1814,7 +1814,6 @@ sub run_job { my ($job, $path, $registered_name) = @_; my $job_to_do = $job; my $error_code = 0; - my $retry_counter = 10; print "$registered_name\n"; return 0 if ( $show ); @@ -1838,7 +1837,7 @@ sub run_job { system("$perl $mkout"); }; } -RETRY: + open (MAKE, "$job_to_do 2>&1 |") or return 8; open (LOGFILE, "> $log_file") or return 8; while (<MAKE>) { print LOGFILE $_; print $_ } |