Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 04 Jul 2000 10:47:15 +0900
From:      MANTANI Nobutaka <nobutaka@nobutaka.com>
To:        ade@FreeBSD.ORG
Cc:        ache@FreeBSD.ORG, clive@CirX.ORG, freebsd-ports@FreeBSD.ORG
Subject:   Re: PERL_VERSION in bsd.port.mk
Message-ID:  <86sntqr7j0.wl@nobutaka.com>
In-Reply-To: In your message of "Mon, 3 Jul 2000 12:40:34 -0500" <20000703124034.I20888@FreeBSD.org>
References:  <20000704003331.A42719@cartier.cirx.org> <20000703103149.A60025@freebsd.org> <20000703124034.I20888@FreeBSD.org>

next in thread | previous in thread | raw e-mail | index | archive | help
At Mon, 3 Jul 2000 12:40:34 -0500,
Ade Lovett <ade@FreeBSD.ORG> wrote:
> 
> However, I'm still seeing the following when building ports:
> 
> 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'
> 
> [...]
> 
> Yet the manual pages go on and get built correctly.  Very odd.

How about this patch?

--- /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?



-Nobutaka


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?86sntqr7j0.wl>