I found the following at http://permalink.gmane.org/gmane.comp.web.wget.general/11731 to fix make[2]: Entering directory `/home/ken/wget-1.14/doc' ./texi2pod.pl -D VERSION="1.14" ./wget.texi wget.pod /usr/bin/pod2man --center="GNU Wget" --release="GNU Wget 1.14" wget.pod > wget.1 wget.pod around line 2105: Expected text after =item, not a number wget.pod around line 2110: Expected text after =item, not a number wget.pod around line 2116: Expected text after =item, not a number wget.pod around line 2121: Expected text after =item, not a number wget.pod around line 2126: Expected text after =item, not a number wget.pod around line 2131: Expected text after =item, not a number wget.pod around line 2136: Expected text after =item, not a number wget.pod around line 2141: Expected text after =item, not a number POD document had syntax errors at /usr/bin/pod2man line 71. make[2]: *** [wget.1] Error 255 make[2]: Leaving directory `/home/ken/wget-1.14/doc' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/ken/wget-1.14' make: *** [all] Error 2
It has one small issue (as noted on that page) - the values for EXIT STATUS used to render as 0 to 8, they now render as .0 to .8 - there doesn't seem any easy way around that, unless someone has a better fix ? ĸen -- das eine Mal als Tragödie, das andere Mal als Farce
Found at http://permalink.gmane.org/gmane.comp.web.wget.general/11731 from Javier Vasquez, fixes error when building wget-1.14 with perl-5.18 : make[2]: Entering directory `/home/ken/wget-1.14/doc' ./texi2pod.pl -D VERSION="1.14" ./wget.texi wget.pod /usr/bin/pod2man --center="GNU Wget" --release="GNU Wget 1.14" wget.pod > wget.1 wget.pod around line 2105: Expected text after =item, not a number wget.pod around line 2110: Expected text after =item, not a number wget.pod around line 2116: Expected text after =item, not a number wget.pod around line 2121: Expected text after =item, not a number wget.pod around line 2126: Expected text after =item, not a number wget.pod around line 2131: Expected text after =item, not a number wget.pod around line 2136: Expected text after =item, not a number wget.pod around line 2141: Expected text after =item, not a number POD document had syntax errors at /usr/bin/pod2man line 71. make[2]: *** [wget.1] Error 255 make[2]: Leaving directory `/home/ken/wget-1.14/doc' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/ken/wget-1.14' make: *** [all] Error 2 There is one side effect : the values for EXIT STATUS in wget.1 will show as .0 to .8 instead of 0 to 8. diff -Naur wget-1.14.orig/doc/wget.texi wget-1.14.new/doc/wget.texi --- wget-1.14.orig/doc/wget.texi 2012-08-04 02:41:52.000000000 -0600 +++ wget-1.14.new/doc/wget.texi 2013-05-26 11:18:52.986107183 -0600 @@ -876,7 +876,7 @@ actions of one. @cindex proxy -@itemx --no-proxy +@item --no-proxy Don't use proxies, even if the appropriate @code{*_proxy} environment variable is defined. @@ -977,7 +977,7 @@ whose encoding does not match the one used locally. @cindex IPv6 -@itemx -4 +@item -4 @itemx --inet4-only @itemx -6 @itemx --inet6-only @@ -2106,32 +2106,32 @@ @table @asis -@item 0 +@item .0 No problems occurred. -@item 1 +@item .1 Generic error code. -@item 2 -Parse error---for instance, when parsing command-line options, the +@item .2 +Parse error - for instance, when parsing command-line options, the @samp{.wgetrc} or @samp{.netrc}... -@item 3 +@item .3 File I/O error. -@item 4 +@item .4 Network failure. -@item 5 +@item .5 SSL verification failure. -@item 6 +@item .6 Username/password authentication failure. -@item 7 +@item .7 Protocol errors. -@item 8 +@item .8 Server issued an error response. @end table @@ -3094,7 +3094,7 @@ Change setting of passive @sc{ftp}, equivalent to the @samp{--passive-ftp} option. -@itemx password = @var{string} +@item password = @var{string} Specify password @var{string} for both @sc{ftp} and @sc{http} file retrieval. This command can be overridden using the @samp{ftp_password} and @samp{http_password} command for @sc{ftp} and @sc{http} respectively. @@ -3605,7 +3605,7 @@ may be specified from within Wget itself. @table @samp -@itemx --no-proxy +@item --no-proxy @itemx proxy = on/off This option and the corresponding command may be used to suppress the use of proxy, even if the appropriate environment variables are set.
-- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
