apkbuild-cpan: perl no longer has '.' in path, add it for prepare()

This commit is contained in:
Timo Teräs 2017-07-11 15:03:44 +03:00
parent ba1d1a3d61
commit 37cbcc6d99
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ prepare() {
if [ -e Build.PL ]; then
perl Build.PL installdirs=vendor
else
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
PERL_MM_USE_DEFAULT=1 perl -I. Makefile.PL INSTALLDIRS=vendor
fi
}
@ -211,7 +211,7 @@ prepare() {
cd "$builddir"
export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}')
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
PERL_MM_USE_DEFAULT=1 perl -I. Makefile.PL INSTALLDIRS=vendor
}
EOF
$build_func = <<'EOF';