in reply to default install directory for modules

I don't understand why?

If you look inside Makefile.PL you will see it uses, ExtUtils::MakeMaker

ExtUtils::MakeMaker lists many options like INSTALL_BASE ... which can be specified in different ways

RTFM to the rescue again

  • Comment on Re: default install directory for modules ( ExtUtils::MakeMaker )

Replies are listed 'Best First'.
Re^2: default install directory for modules ( ExtUtils::MakeMaker )
by niqola (Novice) on Mar 07, 2013 at 11:44 UTC
    Hi, Anonymous Monk,

    Yes, i know it.

    But, in this case no INSTALL_BASE option is specified for both users. So, i'm looking for where the default value is configured and i can't find.

      The answer was in the link. Do

      perl "-V:install.*"

      As each user. One of the users probably has a .cpan directory with a MyConfig.pm.

      -derby

      Yes, i know it...

      :) no you don't, click the link and read it

Re^2: default install directory for modules ( ExtUtils::MakeMaker )
by niqola (Novice) on Mar 07, 2013 at 11:53 UTC

    Is it possible that from cpan configuration?

    In this case, how to change it?

    Thanks again.

      Yeah, read the link, I posted it for you

        That is!

        The user2 has environment variables PERL_MM_OPT defined in his bash config file.

        Thank you very mush for all your helps!