Nasser Gazi wrote:
> I forgot to add that on the version of perl I am using (5.005_03), the
> following doesn't seem to work:
>
> Use File::Spec::Unix qw(catfile);
>
> This is a pain. Anyone know why this might be?

File::Spec doesn't use Exporter. You need to call it as:

    File::Spec->catfile();
NOT
    File::Spec::catfile();

Cheers,

Rob







-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to