diff options
-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 |