summaryrefslogtreecommitdiff
path: root/_posts/2008-06-30-upgrading-to-perl-5.10.textile
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2013-11-26 10:36:10 -0800
committerFranck Cuny <franck.cuny@gmail.com>2013-11-26 10:36:10 -0800
commit8ddf2e94df70707b458528a437759b96046d3e01 (patch)
treed442818d92d3c9c6f7fcdc92857a1228963849a1 /_posts/2008-06-30-upgrading-to-perl-5.10.textile
parentDon't need to use the IP in the makefile. (diff)
downloadlumberjaph-8ddf2e94df70707b458528a437759b96046d3e01.tar.gz
Huge update.
Moved all posts from textile to markdown. Updated all the CSS and styles. Added a new page for the resume.
Diffstat (limited to '_posts/2008-06-30-upgrading-to-perl-5.10.textile')
-rw-r--r--_posts/2008-06-30-upgrading-to-perl-5.10.textile29
1 files changed, 0 insertions, 29 deletions
diff --git a/_posts/2008-06-30-upgrading-to-perl-5.10.textile b/_posts/2008-06-30-upgrading-to-perl-5.10.textile
deleted file mode 100644
index 8c122a2..0000000
--- a/_posts/2008-06-30-upgrading-to-perl-5.10.textile
+++ /dev/null
@@ -1,29 +0,0 @@
----
-layout: post
-category: perl
-title: Upgrading to perl 5.10
----
-
-Get the list of your installed 5.8 modules:
-
-{% highlight bash %}
-perl -MExtUtils::Installed -e'print join("\n", new ExtUtils::Installed->modules)' > module.list
-{% endhighlight %}
-
-then install Perl 5.10:
-
-{% highlight bash %}
-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
-
-{% highlight bash %}
-cpan `cat module.list`
-{% endhighlight %}