From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25798 invoked by alias); 24 May 2014 06:40:02 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 25785 invoked by uid 89); 24 May 2014 06:40:02 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-oa0-f44.google.com Received: from mail-oa0-f44.google.com (HELO mail-oa0-f44.google.com) (209.85.219.44) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Sat, 24 May 2014 06:40:01 +0000 Received: by mail-oa0-f44.google.com with SMTP id o6so6573653oag.31 for ; Fri, 23 May 2014 23:39:59 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.60.115.202 with SMTP id jq10mr10249880oeb.0.1400913599138; Fri, 23 May 2014 23:39:59 -0700 (PDT) Received: by 10.182.236.105 with HTTP; Fri, 23 May 2014 23:39:59 -0700 (PDT) In-Reply-To: References: Date: Sat, 24 May 2014 06:40:00 -0000 Message-ID: Subject: Re: [PATCH, doc]: Fix "POD document had syntax errors at /usr/bin/pod2man line 69." error From: Uros Bizjak To: "gcc-patches@gcc.gnu.org" Cc: Gerald Pfeifer Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2014-05/txt/msg02073.txt.bz2 On Sun, May 18, 2014 at 11:10 AM, Uros Bizjak wrote: > Attached patch fixes following errors in .pod document sources: > > gfdl.pod around line 53: Expected text after =item, not a number > gfdl.pod around line 147: Expected text after =item, not a number > gfdl.pod around line 165: Expected text after =item, not a number > gfdl.pod around line 205: Expected text after =item, not a number > gfdl.pod around line 357: Expected text after =item, not a number > gfdl.pod around line 384: Expected text after =item, not a number > gfdl.pod around line 400: Expected text after =item, not a number > gfdl.pod around line 422: Expected text after =item, not a number > gfdl.pod around line 445: Expected text after =item, not a number > gfdl.pod around line 475: Expected text after =item, not a number > gfdl.pod around line 499: Expected text after =item, not a number > POD document had syntax errors at /usr/bin/pod2man line 69. > gmake[3]: [doc/gfdl.7] Error 1 (ignored) > > As suggested in the fix for a similar problem [1], the solution is to > put "Z<>" in the "=item" argument string. > > 2014-05-18 Uros Bizjak > > * texi2pod.pl: Force .pod file to not be a numbered list. > > The fix was tested by bootstrapping on Fedora20 x86_64-pc-linux-gnu, > and also comparing previous .man and .html files with new ones. They > were bit-exact. I went ahead and install the patch in the mainline. It is a trivial one-liner, and can be easily reverted if it makes troubles. Uros.