diff options
-rw-r--r-- | lib/strict.pm | 2 | ||||
-rw-r--r-- | lib/warnings.pm | 2 | ||||
-rw-r--r-- | warnings.pl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/strict.pm b/lib/strict.pm index bcb1321613..3616753fce 100644 --- a/lib/strict.pm +++ b/lib/strict.pm @@ -3,7 +3,7 @@ package strict; $strict::VERSION = "1.04"; # Verify that we're called correctly so that strictures will work. -unless ( __FILE__ =~ /(^|[\/\\])\Q@{[__PACKAGE__]}\E\.pm$/ ) { +unless ( __FILE__ =~ /(^|[\/\\])\Q@{[__PACKAGE__]}\E\.pmc?$/ ) { # Can't use Carp, since Carp uses us! my (undef, $f, $l) = caller; die("Incorrect use of pragma '@{[__PACKAGE__,]}' at $f line $l.\n"); diff --git a/lib/warnings.pm b/lib/warnings.pm index 060973642c..679a883ed4 100644 --- a/lib/warnings.pm +++ b/lib/warnings.pm @@ -10,7 +10,7 @@ our $VERSION = '1.06'; # Verify that we're called correctly so that warnings will work. # see also strict.pm. -unless ( __FILE__ =~ /(^|[\/\\])\Q@{[__PACKAGE__]}\E\.pm$/ ) { +unless ( __FILE__ =~ /(^|[\/\\])\Q@{[__PACKAGE__]}\E\.pmc?$/ ) { my (undef, $f, $l) = caller; die("Incorrect use of pragma '@{[__PACKAGE__,]}' at $f line $l.\n"); } diff --git a/warnings.pl b/warnings.pl index 63cc677189..148b408f57 100644 --- a/warnings.pl +++ b/warnings.pl @@ -440,7 +440,7 @@ our $VERSION = '1.06'; # Verify that we're called correctly so that warnings will work. # see also strict.pm. -unless ( __FILE__ =~ /(^|[\/\\])\Q@{[__PACKAGE__]}\E\.pm$/ ) { +unless ( __FILE__ =~ /(^|[\/\\])\Q@{[__PACKAGE__]}\E\.pmc?$/ ) { my (undef, $f, $l) = caller; die("Incorrect use of pragma '@{[__PACKAGE__,]}' at $f line $l.\n"); } |