in reply to Re^2: How to tell EU::MM to install a pure-perl module into an architecture-specific location
in thread How to tell EU::MM to install a pure-perl module into an architecture-specific location
This looks to have some effect at least. It may be what you are after.
#!/usr/bin/perl use strict; use warnings; use ExtUtils::MakeMaker; use Config; my %MF = ( macro => { INSTALLSITELIB => $Config{installsitearch} } ); WriteMakefile (%MF); exit;
🦛
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to tell EU::MM to install a pure-perl module into an architecture-specific location
by syphilis (Archbishop) on Sep 24, 2022 at 03:18 UTC |