in reply to Re^2: XML::Atom on MacOS Catalina
in thread XML::Atom on MacOS Catalina

Go into one of those directories, change that one line as mentioned in the issue.

perl Makefile.PL make make test make install

Replies are listed 'Best First'.
Re^4: XML::Atom on MacOS Catalina
by astoller (Novice) on Dec 16, 2020 at 18:31 UTC
    Slight modification to instructions:
    1. Make code change to XML-Atom-0.42-6/t/31-external-entities-libxml.t(from coolo here)
    2. Build code:
      cd ~/.cpan/build/XML-Atom-0.42-6 perl Build.PL setenv PERL5LIB ".:$PERL5LIB" ./Build ./Build test ./Build install

      Note: the '-6' on the path above is environment-specific as cpan creates a new directory every time you try to build the module with cpan

    Now I need to see how the rest of my build attempt goes...

    Thanks!!!