[svn:parrot] r43598 - trunk/lib/Parrot
cotto at svn.parrot.org
cotto at svn.parrot.org
Tue Jan 26 09:09:04 UTC 2010
Author: cotto
Date: Tue Jan 26 09:09:03 2010
New Revision: 43598
URL: https://trac.parrot.org/parrot/changeset/43598
Log:
[h2inc] make h2inc less picky about capitalization, hopefully fixing the win32 build
Modified:
trunk/lib/Parrot/H2inc.pm
Modified: trunk/lib/Parrot/H2inc.pm
==============================================================================
--- trunk/lib/Parrot/H2inc.pm Tue Jan 26 09:01:39 2010 (r43597)
+++ trunk/lib/Parrot/H2inc.pm Tue Jan 26 09:09:03 2010 (r43598)
@@ -59,7 +59,7 @@
$cur and die "Missing '&end_gen' in $in_file\n";
my $file;
foreach (split ' ', $2) {
- $file = $_ if $out_file =~ /$_$/;
+ $file = $_ if $out_file =~ /$_$/i;
}
$cur = {
type => $1,
More information about the parrot-commits
mailing list