Blob Blame History Raw
From 32705d2e9a13cfb248b4db1ad8b7349ed465f914 Mon Sep 17 00:00:00 2001
From: Richard W.M. Jones <rjones@redhat.com>
Date: Thu, 30 Aug 2012 18:16:18 +0100
Subject: [PATCH 22/35] EPEL 5: podwrapper: Don't use Pod::Man.

This unfortunately means the man pages are generated as plain text.
However that's necessary as Pod::Man does not have an output_string
method.
---
 podwrapper.pl.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/podwrapper.pl.in b/podwrapper.pl.in
index a40655a..ea19444 100755
--- a/podwrapper.pl.in
+++ b/podwrapper.pl.in
@@ -387,7 +387,7 @@ SUBMAN: {
     package Podwrapper::Man;
 
     use vars qw(@ISA $VERSION);
-    @ISA = qw(Pod::Man);
+    @ISA = qw(Pod::Simple::Text);
     $VERSION = $package_version;
 
     # Override the L<> method.
-- 
1.7.4.1