How to configure Strawberry Perl to run from something other than c: \ strawberry?

I know that porting is Strawberry Perl for Perl 5.10.0, but there is no Perl 5.10.1 yet. As a result, I am currently experimenting with creating a Strawberry Perl to run from a network location to see what I can get. I was able to fake some of them, enough to get some Perl and some tools, but I could not figure out how to move the vendor \ lib folder away from c:\strawberry.. I am sure that my false efforts will be in vain if I do not know more about how these paths are configured.

Further reading:

Changing Perl Configuration Settings (PerlMonks)

+3
source share
1 answer

Note: I have no idea, really.

In any case, there are some suggestions:

Looking at Perl :: Dist :: Strawberry :

# Set the different paths
$machine->add_dimension('drive');
$machine->add_option('drive',
    image_dir => 'C:\strawberry',
);

So, I believe that this will be a way to build entire distributions from the source, which will be installed in a certain place.

Neither the executables nor the dll libraries have a line in them strawberry, so I assume that this is a hack in Config.pmand Config_heavy.plprobably everything will be done.

+2
source

Source: https://habr.com/ru/post/1725110/


All Articles