summaryrefslogtreecommitdiff
path: root/t/base
diff options
context:
space:
mode:
authorLaszlo Molnar <laszlo.molnar@eth.ericsson.se>2000-12-16 02:40:52 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2000-12-16 17:16:05 +0000
commit7a06d84a010fc180b2d94db024cff7002bb60351 (patch)
treeb17611e9a3ea444bb5704b9fdf0e26610aac8220 /t/base
parenta8586c98e47ea8c3206b047478e3ffd5ffac5a36 (diff)
downloadperl-7a06d84a010fc180b2d94db024cff7002bb60351.tar.gz
[patch perl@8102] dos/djgpp update
Message-ID: <20001216014052.A335@freemail.hu> p4raw-id: //depot/perl@8142
Diffstat (limited to 't/base')
-rw-r--r--t/base/commonsense.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/base/commonsense.t b/t/base/commonsense.t
index 155c5345b6..6e313073d2 100644
--- a/t/base/commonsense.t
+++ b/t/base/commonsense.t
@@ -15,7 +15,8 @@ if (($Config{'extensions'} !~ /\bIO\b/) ){
print "Bail out! Perl configured without IO module\n";
exit 0;
}
-if (($Config{'extensions'} !~ /\bFile\/Glob\b/) ){
+# hey, DOS users do not need this kind of common sense ;-)
+if ($^O ne 'dos' && ($Config{'extensions'} !~ /\bFile\/Glob\b/) ){
print "Bail out! Perl configured without File::Glob module\n";
exit 0;
}