summaryrefslogtreecommitdiff
path: root/ext/PerlIO/t/via.t
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafayette.edu>2004-06-24 11:09:47 -0400
committerNicholas Clark <nick@ccl4.org>2004-06-25 22:19:51 +0000
commit98641f606c65e71cca89f9a694e2796b5a21cbd8 (patch)
treec9607b6ebb0eb995e8cec0160a98bb5ab6362acf /ext/PerlIO/t/via.t
parent429b060a3290b7ecf98534144fcaf0fb46b2afe3 (diff)
downloadperl-98641f606c65e71cca89f9a694e2796b5a21cbd8.tar.gz
Correct detection of absent modules. Based on
Subject: [PATCH] Config{extensions} uses filesystem names as extensions Message-ID: <Pine.SOL.4.58.0406241505530.14039@maxwell.phys.lafayette.edu> with improvements from Marcus Holland-Moritz p4raw-id: //depot/perl@22998
Diffstat (limited to 'ext/PerlIO/t/via.t')
-rw-r--r--ext/PerlIO/t/via.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/PerlIO/t/via.t b/ext/PerlIO/t/via.t
index 0d819dfef3..7d46f40dc8 100644
--- a/ext/PerlIO/t/via.t
+++ b/ext/PerlIO/t/via.t
@@ -8,7 +8,7 @@ BEGIN {
exit 0;
}
require Config;
- if (($Config::Config{'extensions'} !~ /\bPerlIO::via\b/) ){
+ if (($Config::Config{'extensions'} !~ m!\bPerlIO/via\b!) ){
print "1..0 # Skip -- Perl configured without PerlIO::via module\n";
exit 0;
}