On Mon, Jul 10, 2000 at 06:32:22PM +0200, Sheldon Hearn wrote:
> But you didn't update /usr/ports/Mk, did you? :-)
This is nothing to do with parts of /usr/ports being out of date
and has already been mentioned on both -ports and -current.
>From my -current box, which is most definitely up to date
(both src/ and ports/ from 7/9):
[choose random p5 port]
coredump 278# make
===> Extracting for p5-Convert-UU-0.40
expr in free(): warning: modified (chunk-) pointer.
>> Checksum OK for Convert-UU-0.40.tar.gz.
===> Patching for p5-Convert-UU-0.40
===> Configuring for p5-Convert-UU-0.40
Checking if your kit is complete...
Looks good
Warning: I could not locate your pod2man program. Please make sure,
your pod2man program is in your PATH before you execute 'make'
Writing Makefile for Convert::UU
===> Building for p5-Convert-UU-0.40
[...]
The following (untested, by me) patch from
MANTANI Nobutaka <[EMAIL PROTECTED]> apparently fixes this.
--- /usr/src/contrib/perl5/lib/ExtUtils/MM_Unix.pm.orig Tue Jul 4 10:33:51 2000
+++ /usr/src/contrib/perl5/lib/ExtUtils/MM_Unix.pm Tue Jul 4 10:34:33 2000
@@ -1353,7 +1353,7 @@
if (defined $self->{PERL_SRC}) {
$pod2html_exe = $self->catfile($self->{PERL_SRC},'pod','pod2html');
} else {
- $pod2html_exe = $self->catfile($Config{scriptdirexp},'pod2html');
+ $pod2html_exe = $self->catfile($Config{bin},'pod2html');
}
unless ($pod2html_exe = $self->perl_script($pod2html_exe)) {
# No pod2html but some HTMLxxxPODS to be installed
@@ -2608,7 +2608,7 @@
if (defined $self->{PERL_SRC}) {
$pod2man_exe = $self->catfile($self->{PERL_SRC},'pod','pod2man');
} else {
- $pod2man_exe = $self->catfile($Config{scriptdirexp},'pod2man');
+ $pod2man_exe = $self->catfile($Config{bin},'pod2man');
}
unless ($pod2man_exe = $self->perl_script($pod2man_exe)) {
# Maybe a build by uninstalled Perl?
-aDe
--
Ade Lovett, Austin, TX. [EMAIL PROTECTED]
FreeBSD: The Power to Serve http://www.FreeBSD.org/
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message