in reply to Re^5: @INC not reflecting correctly
in thread @INC not reflecting correctly
Then you'll see:package New_Config; use Config; my $new = tied %Config; $new->{make} = 'dmake'; $new->{byteorder} = '43215678'; # Specify as many as you like 1;
The first I became aware of this was with Mattia Barbon's EU::FakeConfig.C:\>perl -V:byteorder byteorder='12345678'; C:\>perl -MNew_Config -V:byteorder byteorder='43215678'; C:\>perl -V:make make='gmake'; C:\>perl -MNew_Config -V:make make='dmake';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: @INC not reflecting correctly
by haj (Vicar) on Aug 28, 2021 at 09:55 UTC | |
by syphilis (Archbishop) on Aug 28, 2021 at 12:51 UTC |