in reply to Modifying Config.pm and/or Config_heavy.pl
use warnings; use strict; use Config; my $obj = tied %Config::Config; print $Config::Config{make}, "\n"; $obj->{make} = "modified_value"; print $Config::Config{make}, "\n"; __END__ outputs: dmake modified_value
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Modifying Config.pm and/or Config_heavy.pl
by Outaspace (Scribe) on Sep 29, 2006 at 13:28 UTC | |
by syphilis (Archbishop) on Sep 29, 2006 at 23:16 UTC |