Hi, Whilst installing the Msql-Mysql module via CPAN, I got an error which said that it couldn't find pod2text /usr/bin contains pod2man and pod2latex man Pod::Text refers to pod2text Cheers -- Yusuf Goolamabbas yusufg
Fixed in the perl package available from rawhide.
*** Bug 4853 has been marked as a duplicate of this bug. *** A very simple little script that is missing from perl is pod2text. It should exist as pod2html and co exist. This little script is required to build Mysql DBI modules so I assume that it is a standard part of the perl distribution. You can write your own pod2text by saving the following script in /usr/bin/pod2text: #!/usr/bin/perl eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' if $running_under_some_shell; use Pod::Text; pod2text @ARGV;
*** Bug 5198 has been marked as a duplicate of this bug. *** For some reason, the default installation doesn't include pod2text