summaryrefslogtreecommitdiff
path: root/posts/2008-06-30-upgrading-to-perl-5.10.md
blob: b3a2f3d50f9a1aa73a498c206930eece18781cf0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Get the list of your installed 5.8 modules:

``` bash
perl -MExtUtils::Installed -e'print join("\n", new ExtUtils::Installed->modules)' > module.list
```

then install Perl 5.10:

``` 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"'
```

and then re-install your modules with cpan \`cat module.list\`.