diff options
| author | Franck Cuny <franckcuny@gmail.com> | 2016-07-02 20:04:59 -0700 |
|---|---|---|
| committer | Franck Cuny <franckcuny@gmail.com> | 2016-07-02 20:04:59 -0700 |
| commit | 8f187c573954b6c8d1650ac33a164c52e032ac16 (patch) | |
| tree | c605d0cf51d272393006e5486bfdc24984cf801f /_posts/2008-06-30-upgrading-to-perl-5.10.md | |
| parent | Update some posts to make the tests pass. (diff) | |
| download | lumberjaph-8f187c573954b6c8d1650ac33a164c52e032ac16.tar.gz | |
Stop using Jekyll.
Moving away from Jekyll to Hugo. This commit clean up the old files to
prepare for the migration.
Diffstat (limited to '_posts/2008-06-30-upgrading-to-perl-5.10.md')
| -rw-r--r-- | _posts/2008-06-30-upgrading-to-perl-5.10.md | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/_posts/2008-06-30-upgrading-to-perl-5.10.md b/_posts/2008-06-30-upgrading-to-perl-5.10.md deleted file mode 100644 index 512fd59..0000000 --- a/_posts/2008-06-30-upgrading-to-perl-5.10.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -layout: post -summary: In which we upgrade to Perl 5.10. -title: Upgrading to perl 5.10 -type: codex ---- - -Get the list of your installed 5.8 modules: - -{% highlight sh %} -% perl -MExtUtils::Installed -e'print join("\n", new ExtUtils::Installed->modules)' > module.list -{% endhighlight %} - -then install Perl 5.10: - -{% highlight 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"' -{% endhighlight %} - -and then re-install your modules with <code>cpan \`cat module.list\`</code>. |
