diff options
author | Matthew Somerville <matthew@mysociety.org> | 2013-06-04 19:33:08 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2013-06-04 19:37:51 +0100 |
commit | acfcf95206946487e23764320dbce2eff3b5cbda (patch) | |
tree | 0adc1b9c81b4f44c5a8b8251612637deae32cfb2 /bin/install_perl_modules | |
parent | cb4f51af527ab1c4eaee7aaf061c01aec96c5eb9 (diff) |
Workaround for problem installing ExtUtils::MakeMaker.
Diffstat (limited to 'bin/install_perl_modules')
-rwxr-xr-x | bin/install_perl_modules | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/install_perl_modules b/bin/install_perl_modules index 2311ae5f1..44d721ee2 100755 --- a/bin/install_perl_modules +++ b/bin/install_perl_modules @@ -4,6 +4,10 @@ set -e DIR="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd | sed -e 's/\/bin$//' )" +# Before anything else is installed, install the current dev version of +# ExtUtils::MakeMaker to work around a dependency bug only just fixed, sigh +$DIR/bin/cpanm -l $DIR/local BINGOS/ExtUtils-MakeMaker-6.67_02.tar.gz + $DIR/bin/cpanm -l $DIR/local Carton export PATH=$DIR/local/bin:$PATH |