On Fri, Jan 1, 2021 at 4:32 PM Tim Rühsen <[email protected]> wrote: > > The failure is the same for all perl tests: > > Can't locate HTTP/Daemon.pm in @INC (you may need to install the > HTTP::Daemon module) (@INC contains: . > /opt/local/lib/perl5/site_perl/5.26/darwin-thread-multi-2level > /opt/local/lib/perl5/site_perl/5.26 > /opt/local/lib/perl5/vendor_perl/5.26/darwin-thread-multi-2level > /opt/local/lib/perl5/vendor_perl/5.26 > /opt/local/lib/perl5/5.26/darwin-thread-multi-2level > /opt/local/lib/perl5/5.26 .) at HTTPServer.pm line 6. > > Looks like perl can't find HTTP/Daemon.pm.
Oh, that's interesting. I specifically test for HTTP::Daemon at https://github.com/noloader/Build-Scripts/blob/master/build-wget.sh#L141 . Otherwise I disable self tests. if ! perl -MHTTP::Daemon -e1 2>/dev/null then echo "Wget requires Perl's HTTP::Daemon. Skipping Wget self tests." echo "To fix this issue, please install HTTP-Daemon." SKIP_WGET_TESTS=1 fi Jeff
