On Wed, Jun 04, 2003 at 05:58:52PM -0500, Craig Berry wrote:
> >Could we set up another logical root and use that instead of ../lib?
> 
> I've been thinking of that, and we may even have tried something like that before, 
> but it gets messy trying to add /bfd_lib_root to @INC in a BEGIN block only on VMS 
> (where I guess "messy" just means I don't know how to do it).  

Is there any reason why:

    BEGIN {
        if( $^O eq 'VMS' ) {
            @INC = ('/mm_lib');
        }
        else {
            @INC = ('lib');
        }
    }

wouldn't work?  Assuming mm_lib was already set up in 00setup_dummy.t like
/bfd_test_root is?


-- 
If God made anything more guerrila than your breast, I hope he kept it for
your father.

Reply via email to