in reply to Perl install issue

What happens when you run make again?

Also, check your system clock :)

Replies are listed 'Best First'.
Re^2: Perl install issue
by Ijon.Tichi (Initiate) on Aug 30, 2012 at 13:55 UTC
    After repeating 'make' I get the same error again.
    And what is about system clock? The result of 'date' seems to be correct.

      And what is about system clock? The result of 'date' seems to be correct.

      What is it compared to the age of Makefile.PL and Makefile?

      I recall seeing messages like that when my localtime was in the past (my time settings weren't updated for modern daylight savings), and Makefile.PL was in the future, so the generated Makefile was older than Makefile.PL

      touch Makefile.PL fixed that issue

      but 5.16.1 was released weeks ago :)

        Thank you for the hint! It seems the problem is that in each subdir like perl-5.16.1/cpan/.., or perl-5.16.1/dist/.. Makefile is old and it is fixed only when you manually run a Makefile.PL in each of these subdirs that is impossible to do.
        I am facing the same issue with perl 5.18.2. Basically miniperl creates files with modification date in the past (some 59 seconds), while the Makefile.PL had good modification date (i.e. according to system clock).

        Since the filesystem was located on a Network Attached Storage, I simply moved the source directory of perl to some other storage and it solved the problem.

        (miniperl used to be on the NAS, while make was on an internal hdd. But I still don't understand why the modification dates were affected.)