From nobody Fri Jun 10 11:10:39 2022 X-Original-To: ports@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id D1645833C9E for ; Fri, 10 Jun 2022 11:10:58 +0000 (UTC) (envelope-from andyf@andyit.com.au) Received: from alpine.spintel.net.au (alpine.spintel.net.au [203.23.236.77]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4LKJDK4xJbz3Qjl for ; Fri, 10 Jun 2022 11:10:57 +0000 (UTC) (envelope-from andyf@andyit.com.au) Received: from drunkfish.andyit.com.au (unknown [202.87.175.55]) by alpine.spintel.net.au (Postfix) with ESMTPS id 1D00D4C294C for ; Fri, 10 Jun 2022 21:10:46 +1000 (AEST) Received: from [172.22.2.15] (tosh2.andyit.com.au [172.22.2.15]) by drunkfish.andyit.com.au (8.16.1/8.16.1) with ESMTPS id 25ABAkN3009984 (version=TLSv1.3 cipher=TLS_AES_128_GCM_SHA256 bits=128 verify=NO) for ; Fri, 10 Jun 2022 21:10:46 +1000 (AEST) (envelope-from andyf@andyit.com.au) Message-ID: <453535e5-900a-ef2d-9bce-5ba20817a680@andyit.com.au> Date: Fri, 10 Jun 2022 21:10:39 +1000 List-Id: Porting software to FreeBSD List-Archive: https://lists.freebsd.org/archives/freebsd-ports List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.9.1 Subject: Re: make index fail Content-Language: en-US To: ports@freebsd.org References: <5eaa3181-a1dd-81da-9753-be8233a677f5@andyit.com.au> <608a1c7f-f22b-ab79-193c-6e64e05a92a5@andyit.com.au> <1084b4eb-b532-5f4a-e0d7-92d7b3526efd@FreeBSD.org> From: Andy Farkas In-Reply-To: <1084b4eb-b532-5f4a-e0d7-92d7b3526efd@FreeBSD.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4LKJDK4xJbz3Qjl X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=none (mx1.freebsd.org: domain of andyf@andyit.com.au has no SPF policy when checking 203.23.236.77) smtp.mailfrom=andyf@andyit.com.au X-Spamd-Result: default: False [-2.19 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; FROM_HAS_DN(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; PREVIOUSLY_DELIVERED(0.00)[ports@freebsd.org]; AUTH_NA(1.00)[]; RCPT_COUNT_ONE(0.00)[1]; RCVD_COUNT_THREE(0.00)[3]; DMARC_NA(0.00)[andyit.com.au]; NEURAL_HAM_SHORT(-0.99)[-0.986]; MLMMJ_DEST(0.00)[ports]; R_SPF_NA(0.00)[no SPF record]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; MIME_TRACE(0.00)[0:+]; ASN(0.00)[asn:18390, ipnet:203.23.236.0/24, country:AU]; RCVD_TLS_ALL(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; RCVD_IN_DNSWL_LOW(-0.10)[203.23.236.77:from] X-ThisMailContainsUnwantedMimeParts: N On 10/06/2022 8:53 pm, Norikatsu Shigemura wrote: > Ah, I know this issue. > > On 2022/06/10 14:07, Tatsuki Makino wrote: >> If there is still a problem, is there something wrong with the >> environment variables? >> Also, there is no difference in the error message, so I can't >> determine whether it is running in /usr/libexec/make_index or >> /usr/ports/Tools/make_index. > > If you use perl 5.30, update to perl 5.32 or 5.34. > Perl 5.30 is no longer support in this time. I will install perl-5.32. Interesting you say perl5-30 not supported anymore (I believe you) but: %%% root@mater:/usr/ports/lang/perl5.32 # make clean ===>  Cleaning for perl5.32-5.32.1_1 root@mater:/usr/ports/lang/perl5.32 # make fetch ##################################################       This is *NOT* the DEFAULT perl version It will *NOT* install /usr/local/bin/perl It will *ONLY* install /usr/local/bin/perl5.32.1 The default Perl version currently is 5.30. If you want to use this version as the default, stop the build now, add this line to your /etc/make.conf, and then restart the build. DEFAULT_VERSIONS+=perl5=5.32 ################################################## %%% -andyf