From patchwork Wed Mar 18 18:45:42 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ben Pfaff X-Patchwork-Id: 1257709 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=openvswitch.org (client-ip=140.211.166.137; helo=fraxinus.osuosl.org; envelope-from=ovs-dev-bounces@openvswitch.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ovn.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 48jJs85PXlz9sPR for ; Thu, 19 Mar 2020 05:46:04 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 1186686670; Wed, 18 Mar 2020 18:46:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id h8JR8Jd2J8EY; Wed, 18 Mar 2020 18:46:02 +0000 (UTC) Received: from lists.linuxfoundation.org (lf-lists.osuosl.org [140.211.9.56]) by fraxinus.osuosl.org (Postfix) with ESMTP id 90A2D8647E; Wed, 18 Mar 2020 18:46:02 +0000 (UTC) Received: from lf-lists.osuosl.org (localhost [127.0.0.1]) by lists.linuxfoundation.org (Postfix) with ESMTP id 7B4F8C18DA; Wed, 18 Mar 2020 18:46:02 +0000 (UTC) X-Original-To: dev@openvswitch.org Delivered-To: ovs-dev@lists.linuxfoundation.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by lists.linuxfoundation.org (Postfix) with ESMTP id 482EAC18DA for ; Wed, 18 Mar 2020 18:46:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 402C326881 for ; Wed, 18 Mar 2020 18:46:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7-hnhOCsmHqR for ; Wed, 18 Mar 2020 18:45:59 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from relay3-d.mail.gandi.net (relay3-d.mail.gandi.net [217.70.183.195]) by silver.osuosl.org (Postfix) with ESMTPS id C95B524F76 for ; Wed, 18 Mar 2020 18:45:58 +0000 (UTC) X-Originating-IP: 75.54.222.30 Received: from sigfpe.attlocal.net (75-54-222-30.lightspeed.rdcyca.sbcglobal.net [75.54.222.30]) (Authenticated sender: blp@ovn.org) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id 226E960005; Wed, 18 Mar 2020 18:45:55 +0000 (UTC) From: Ben Pfaff To: dev@openvswitch.org Date: Wed, 18 Mar 2020 11:45:42 -0700 Message-Id: <20200318184548.3000357-2-blp@ovn.org> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200318184548.3000357-1-blp@ovn.org> References: <20200318184548.3000357-1-blp@ovn.org> MIME-Version: 1.0 Cc: Ben Pfaff Subject: [ovs-dev] [PATCH ovn v2 1/7] xml2nroff: Properly support

. X-BeenThere: ovs-dev@openvswitch.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ovs-dev-bounces@openvswitch.org Sender: "dev"

uses .SU but xml2nroff didn't define .SU. Signed-off-by: Ben Pfaff --- build-aux/xml2nroff | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/build-aux/xml2nroff b/build-aux/xml2nroff index bd4e87928e4f..764ace9b19ba 100755 --- a/build-aux/xml2nroff +++ b/build-aux/xml2nroff @@ -90,8 +90,14 @@ def manpage_to_nroff(xml_file, subst, include_path, version=None): . I "\\$1" . RE .. -''' % (build.nroff.text_to_nroff(program), build.nroff.text_to_nroff(section), - build.nroff.text_to_nroff(title), build.nroff.text_to_nroff(version)) +.de SU +. PP +. I "\\\\$1" +.. +build/''' % (build.nroff.text_to_nroff(program), + build.nroff.text_to_nroff(section), + build.nroff.text_to_nroff(title), + build.nroff.text_to_nroff(version)) s += build.nroff.block_xml_to_nroff(doc.childNodes) + "\n"