Skip Menu |

This queue is for tickets about the DBD-mysql CPAN distribution.

Report information
The Basics
Id: 25233
Status: resolved
Priority: 0/
Queue: DBD-mysql

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 4.001
Fixed in: (no value)



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
The fix for this has been committed to the DBD::mysql source repository. Thanks for the report.