4

I'm trying to install a development perl version other than perl-bleed with perlbrew eg:

$ perlbrew install perl-5.21.5

fails if I tail the log file I see

$ tail ~/perl5/perlbrew/build.perl-5.21.5.log
    Data corruption and crashes are possible.

    It is most seriously suggested that you do not continue any further
    unless you want to help in developing and debugging Perl.

    If you *still* want to build perl, you can answer 'y' now,
    or pass -Dusedevel to Configure.

Do you really want to continue? [n]  
Okay, bye.

How can I tell perlbrew to answer yes?

Ivan Wills
  • 151
  • 9

1 Answers1

4

You need to pass -Dusedevel to perlbrew, e.g.:

$ perlbrew install perl-5.21.5 -Dusedevel
ThisSuitIsBlackNot
  • 23,492
  • 9
  • 63
  • 110
Ivan Wills
  • 151
  • 9