summaryrefslogtreecommitdiff
path: root/t/comp/script.t
diff options
context:
space:
mode:
Diffstat (limited to 't/comp/script.t')
-rwxr-xr-xt/comp/script.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/comp/script.t b/t/comp/script.t
index 9ae83e4304..4891f5bae7 100755
--- a/t/comp/script.t
+++ b/t/comp/script.t
@@ -5,7 +5,8 @@
print "1..3\n";
$PERL = ($^O eq 'MSWin32') ? '.\perl'
- : ($^O eq 'MacOS') ? $^X : './perl';
+ : (($^O eq 'NetWare') ? 'perl'
+ : ($^O eq 'MacOS') ? $^X : './perl');
$x = `$PERL -le "print 'ok';"`;
if ($x eq "ok\n") {print "ok 1\n";} else {print "not ok 1\n";}