Subject: | Makefile.PL fails with LANG!=C |
There's a failure when executing Makefile.PL with perl 5.008, a non-C
LANG environment variable and at least one argument:
-------------------------------------------------------------------
$ perl Makefile.PL --testdb=test
$ENV{LANG} is not 'C' execing 'perl Makefile.PL' with ENV{LANG} == 'C'
You can skip this check by: 'export LANG='C' before running 'perl
Makefile.PL or by upgrading your Perl'
No such file or directory at Makefile.PL line 13.
BEGIN failed--compilation aborted at Makefile.PL line 15.
-------------------------------------------------------------------
The problem is caused by a wrong usage of the exec() call in line 13:
$Config{perlpath} and $0 should not be in the same string, but separate
list elements.
Regards,
Slaven