in reply to Re: perl modules installation error
in thread perl modules installation error

Make can get confused if your system clock is not correct (or more precisely, if your dependencies are newer than the current system time). I'd recommend setting your system clock to the correct time and then try to make a clean build (in the CPAN shell I believe you can do that with clean HTML::Parser followed by install HTML::Parser).

Replies are listed 'Best First'.
Re^3: perl modules installation error
by sybella1 (Initiate) on Aug 28, 2005 at 10:19 UTC
    Hi Joost,
    I'm going to try to reset the system clock; i don't know how but I will try.
    I'm new to linux. I will let you know. Thanks for the reply.
    regards,
    sybella.
      Hi Joost,
      You were right, it was the system clock. It's working now.
      For any one following this thread this is what i did:
      run:
      apt-get install netdate
      netdate tcp 128.2.136.71
      Create /var/spool/cron/tabs/root:
      # update time with ntp server
      0 3,9,15,21 * * * /usr/sbin/netdate 128.2.136.71
      Then run
      chmod 600 /var/spool/cron/tabs/root
      /etc/init.d/cron restart
      regards,
      sybella.