Skip Menu |

This queue is for tickets about the Encode CPAN distribution.

Report information
The Basics
Id: 114065
Status: open
Priority: 0/
Queue: Encode

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

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



Subject: Encode-2.84 breaks win32 in CORE
PERL_CORE=1 runs with miniperl, but you added to enc2xs # Win32 does not expand globs on command line eval "\@ARGV = map(glob(\$_),\@ARGV)" if ($^O eq 'MSWin32'); which cleans @ARGV, hence the args and opts are gone, and enc2xs does on win32, msvc. patch: # Win32 does not expand globs on command line if ($^O eq 'MSWin32' and !$ENV{PERL_CORE}) { eval "\@ARGV = map(glob(\$_),\@ARGV)"; @ARGV = @orig_ARGV unless @ARGV; } -- Reini Urban