Re: Auto installdirs

2008-03-07 Thread Michael G Schwern
Eric Wilhelm wrote: # from Ken Williams # on Thursday 06 March 2008 18:22: INSTALLDIRS => ($] >= 5.009004 ? 'perl' : 'site'), #C Now, does that do everything we'd want? No, it still does the wrong thing whenever site and vendor are in the right order. > # from Michael G Schwern # on

Re: Auto installdirs

2008-03-07 Thread Eric Wilhelm
# from Ken Williams # on Thursday 06 March 2008 18:22: >  INSTALLDIRS   => ($] >= 5.009004 ? 'perl' : 'site'),  #C > >Now, does that do everything we'd want? No, it still does the wrong thing whenever site and vendor are in the right order. # from Michael G Schwern # on Wednesday 27 February 20

Re: Auto installdirs

2008-03-07 Thread Michael G Schwern
Ken Williams wrote: One problem with this solution to setting installdirs: installdirs => ($] >= 5.009004 ? 'core' : 'site'), #A is that an auto-generated Makefile.PL will get a static setting for INSTALLDIRS. This is of course the problem with any dynamic settings in Build.PL that are e

Auto installdirs

2008-03-06 Thread Ken Williams
Me again. One problem with this solution to setting installdirs: installdirs => ($] >= 5.009004 ? 'core' : 'site'), #A is that an auto-generated Makefile.PL will get a static setting for INSTALLDIRS. This is of course the problem with any dynamic settings in Build.PL that are expected to