summaryrefslogtreecommitdiff
path: root/lib/FindBin.t
diff options
context:
space:
mode:
Diffstat (limited to 'lib/FindBin.t')
-rw-r--r--lib/FindBin.t7
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/FindBin.t b/lib/FindBin.t
index be6f58c3e0..36e142c476 100644
--- a/lib/FindBin.t
+++ b/lib/FindBin.t
@@ -10,12 +10,7 @@ print "1..2\n";
use FindBin qw($Bin);
print "# $Bin\n";
-
-if ($^O eq 'MacOS') {
- print "not " unless $Bin =~ m,:lib:$,;
-} else {
- print "not " unless $Bin =~ m,[/.]lib\]?$,;
-}
+print "not " unless $Bin =~ m,[/.]lib\]?$,;
print "ok 1\n";
$0 = "-";