in reply to Re^3: perl-5.18.0 install problem
in thread perl-5.18.0 install problem

Hi, defaulted the size to 4096 in Copy.pm and the install seemd to work.... to a certain point...now I have different problems. The if statement didn't work..



if ($^O eq 'nonstop-kernel') { $size = 4096; }


Thank you all
Laszlo

Replies are listed 'Best First'.
Re^5: perl-5.18.0 install problem
by marto (Cardinal) on Jul 01, 2013 at 12:15 UTC

    What is the value of $^O?

      I am new to perl. This question is valid, but I have no idea how to display the value, or debug. Let me know how can I display it and I will come back to you.

      Regards
      Laszlo

        perl -e 'print "$^O\n"';

        Update: This of course assumes you already have a working version of Perl somewhere on your system.