in reply to perl cant find it anymore!
Update: As noted below you can't fix this with hand-editing. You can find out what your INC path is with perl -V.
Much better is to put perl where Config.pm expects it to be, or recompile perl. You need the ANSI C compiler to compile perl on HP-UX, though.
You can see what is in Config.pm by inspecting the code in the module, or with this code:
#!/opt/perl5/bin/perl use strict; use Config; for (keys %Config) { print "$_ = $Config{$_}\n"; }
You can use the INC path methods above to get the use Config line to work.
It should work perfectly the first time! - toma
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(tye)Re: perl cant find it anymore!
by tye (Sage) on Jun 18, 2001 at 21:26 UTC |