From 29a84bcdba66c82a4d5d4e9dfff36f0ecb1a93b0 Mon Sep 17 00:00:00 2001 From: Richard W.M. Jones Date: Thu, 30 Aug 2012 18:16:18 +0100 Subject: [PATCH 24/29] 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 389c398..ee6d871 100755 --- a/podwrapper.pl.in +++ b/podwrapper.pl.in @@ -373,7 +373,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