Subject: | --as doesn't seem to work anymore |
perlbrew seems to ignore the --as option when installing a release:
$ perlbrew install perl-5.14.0 --as kitchen-sink
Installing /home/rhoelz/.perlbrew/build/perl-5.14.0 into ~/.perlbrew/perls/perl-5.14.0
My suggestion for a fix is to change this line in do_install_this:
$as ||= $self->{as};
to this:
$as = $self->{as} if $self->{as};
However, I'm not sure how many things that would break.
-Rob