in reply to Re^2: Cpan install gets stuck installing Net OpenSSH ?
in thread Cpan install gets stuck installing Net OpenSSH ?

I got farther this time. No errors about missing or wrong versions of OpenSSH. But I am still getting stuck at this: Password: t/1_run.t .... skipped: Unable to establish SSH connection to localhost! t/quoting.t .. Use of uninitialized value $ENV{"LANG"} in pattern match (m//) at t/quoting.t line 17. I'm not sure what/where this env value is located or how to fix it.
  • Comment on Re^3: Cpan install gets stuck installing Net OpenSSH ?

Replies are listed 'Best First'.
Re^4: Cpan install gets stuck installing Net OpenSSH ?
by Corion (Patriarch) on Mar 11, 2016 at 19:57 UTC

    See perlvar on %ENV. It seens that in your environment, the environment variable LANG is not set. But that is just a warning and not really a cause for a failing test. As a workaround, you could run export LANG=C.

    What is the real output you get when running make test?