From 63f413891d5adc596e4d51dfba4d0d23fdea3ca4 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sun, 31 Jul 2016 10:16:40 -0700 Subject: Stop generating a static site. --- content/post/2008-06-30-upgrading-to-perl-5.10.md | 25 ----------------------- 1 file changed, 25 deletions(-) delete mode 100644 content/post/2008-06-30-upgrading-to-perl-5.10.md (limited to 'content/post/2008-06-30-upgrading-to-perl-5.10.md') diff --git a/content/post/2008-06-30-upgrading-to-perl-5.10.md b/content/post/2008-06-30-upgrading-to-perl-5.10.md deleted file mode 100644 index b4ad719..0000000 --- a/content/post/2008-06-30-upgrading-to-perl-5.10.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -date: 2008-06-30T00:00:00Z -summary: In which we upgrade to Perl 5.10. -title: Upgrading to perl 5.10 ---- - -Get the list of your installed 5.8 modules: - -```sh -% perl -MExtUtils::Installed -e'print join("\n", new ExtUtils::Installed->modules)' > module.list -``` - -then install Perl 5.10: - -```sh -% wget http://www.cpan.org/src/perl-5.10.0.tar.gz -% tar xzf perl-5.10.0.tar.gz -% cd perl-5.10.0 -% sh Configure -de -Dprefix=/opt/perl -Duserelocatableinc -% make && make test -% sudo make install -% /opt/perl/bin/perl -e 'use feature qw(say); say "hi"' -``` - -and then re-install your modules with cpan \`cat module.list\`. -- cgit v1.2.3