App-perlbrew icon indicating copy to clipboard operation
App-perlbrew copied to clipboard

Older versions of File::Find bundled with Perl don't cope well on btrfs and some other file systems.

Open tobyink opened this issue 3 years ago • 1 comments

And File::Find is used by Perl's make install, so you end up with a lot of core modules not being installed.

Adding this to the top of lib/File/Find.pm before running Configure fixes it:

$File::Find::dont_use_nlink=1;

tobyink avatar Nov 16 '20 15:11 tobyink