Skip Menu |

This queue is for tickets about the Google-Chart CPAN distribution.

Report information
The Basics
Id: 38265
Status: resolved
Priority: 0/
Queue: Google-Chart

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

Bug Information
Severity: Unimportant
Broken in:
  • 0.05000
  • 0.05000_01
  • 0.05000_02
  • 0.05000_03
Fixed in: (no value)



Subject: Makefile.PL compatibility-check is unfriendly
See the attached diff; the "Are you sure you want to continue prompt looks like it's asking for /y(es)?/i but it's missing the optional quantifier so a simple "y" fails. -- --kulp
Subject: more_friendly.diff
--- Makefile.PL 2008-08-05 23:37:46.000000000 -0500 +++ Makefile.PL.new 2008-08-06 16:49:23.787310000 -0500 @@ -15,7 +15,7 @@ Are you sure you want to continue? [y/N] EOM - if ($y_n !~ /^y(?:es)$/i) { + if ($y_n !~ /^y(?:es)?$/i) { exit 0; } }