Bug 4212
| Summary: | pod2text not installed in RH 6.0 | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | Yusuf Goolamabbas <yusufg> |
| Component: | perl | Assignee: | Crutcher Dunnavant <crutcher> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | |
| Severity: | high | Docs Contact: | |
| Priority: | high | ||
| Version: | 6.0 | CC: | oliver, unknown |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | i386 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 1999-07-29 07:18:59 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Yusuf Goolamabbas
1999-07-27 06:49:00 UTC
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; |