in reply to Re: perl unable to locate my module
in thread perl unable to locate my module

Perms for the parent dir (/home/charrison/bin) are 775, so that should be good. The user/group is charrison/charrison.

Replies are listed 'Best First'.
Re^3: perl unable to locate my module
by LanX (Saint) on May 22, 2013 at 00:17 UTC
    Well, it also fails if earlier dirs in the path have no x mode.

    But if /home/charrison/bin is correct this isn't a likely reason...

    Cheers Rolf

    ( addicted to the Perl Programming Language)

      Also, require '/home/charrison/bin/IPC.pm'; succeeds, which indicates to me it probably isn't related to permissions....
        > which indicates to me it probably isn't related to permissions....

        It's possible to create very pathological situations with permissions.

        If I were you I'd try mkdir new dirs and copy IPC.pm there (and another tst.pm with just "1") and try to set INC accordingly.

        Maybe you can isolate the problem.

        BTW: manually perl -I/home/charrison/bin -MIPC -e'1' fails, too?

        HTH

        Cheers Rolf

        ( addicted to the Perl Programming Language)