in reply to 2 programs cant use the same module :O
Try copying it to your site/lib directory, which usually is C:\Perl\site\lib on ActiveState.
It is strange that this happens, since both the parent and child should share the same working directory. Is it that you have the second script on a different directory, and you chdir to it before launching it? If this is the case then don't chdir and do
and it should work.system('perl dir/other.pl');
|
|---|