psss / rpms / libguestfs

Forked from rpms/libguestfs 5 years ago
Clone

Blame 0025-EPEL-5-podwrapper-Don-t-use-Pod-Man.patch

b03e9cf
From deedfc2c5b28d95bd4d305034379fa584e939cb9 Mon Sep 17 00:00:00 2001
88f5280
From: Richard W.M. Jones <rjones@redhat.com>
88f5280
Date: Thu, 30 Aug 2012 18:16:18 +0100
b03e9cf
Subject: [PATCH 25/36] EPEL 5: podwrapper: Don't use Pod::Man.
88f5280
88f5280
This unfortunately means the man pages are generated as plain text.
88f5280
However that's necessary as Pod::Man does not have an output_string
88f5280
method.
88f5280
---
88f5280
 podwrapper.pl.in |    2 +-
88f5280
 1 files changed, 1 insertions(+), 1 deletions(-)
88f5280
88f5280
diff --git a/podwrapper.pl.in b/podwrapper.pl.in
b03e9cf
index 53a13cd..415fa67 100755
88f5280
--- a/podwrapper.pl.in
88f5280
+++ b/podwrapper.pl.in
b03e9cf
@@ -387,7 +387,7 @@ SUBMAN: {
88f5280
     package Podwrapper::Man;
88f5280
 
88f5280
     use vars qw(@ISA $VERSION);
88f5280
-    @ISA = qw(Pod::Man);
88f5280
+    @ISA = qw(Pod::Simple::Text);
88f5280
     $VERSION = $package_version;
88f5280
 
88f5280
     # Override the L<> method.
88f5280
-- 
88f5280
1.7.4.1
88f5280