summaryrefslogtreecommitdiff
path: root/parallel/parallel/patches/patch-src_parallel.pod
blob: 18076251cde50cf8cc61e148ca1473269c9fccc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
$NetBSD: patch-src_parallel.pod,v 1.1 2013/06/16 21:46:35 wiz Exp $

Fix build with perl-5.18, which does not like unescaped numbers after =item.

--- src/parallel.pod.orig	2013-01-21 22:43:00.000000000 +0000
+++ src/parallel.pod
@@ -522,18 +522,18 @@ Print a summary of the options to GNU B<
 
 =over 3
 
-=item 0
+=item "0"
 
 Do not halt if a job fails. Exit status will be the number of jobs
 failed. This is the default.
 
-=item 1
+=item "1"
 
 Do not start new jobs if a job fails, but complete the running jobs
 including cleanup. The exit status will be the exit status from the
 last failing job.
 
-=item 2
+=item "2"
 
 Kill off all jobs immediately and exit without cleanup. The exit
 status will be the exit status from the failing job.
@@ -2724,19 +2724,19 @@ If B<--halt-on-error> 0 or not specified
 
 =over 6
 
-=item 0
+=item "0"
 
 All jobs ran without error.
 
-=item 1-253
+=item "1-253"
 
 Some of the jobs failed. The exit status gives the number of failed jobs
 
-=item 254
+=item "254"
 
 More than 253 jobs failed.
 
-=item 255
+=item "255"
 
 Other error.