diff options
author | Chris Nandor <pudge@pobox.com> | 2001-03-10 09:23:55 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-03-10 21:58:48 +0000 |
commit | db5fd3951bd11f350bba21084582656186031ed8 (patch) | |
tree | 29c15a65c98cabe91a1f6c6de6876a09dbfe2abf /t/lib/errno.t | |
parent | 8269fa76d2972b02e844f46a88d03e7d25fb51d7 (diff) | |
download | perl-db5fd3951bd11f350bba21084582656186031ed8.tar.gz |
Portability fixes for Mac OS / bleadperl
Message-Id: <p05010401b6d02f70211f@[10.0.1.177]>
p4raw-id: //depot/perl@9099
Diffstat (limited to 't/lib/errno.t')
-rwxr-xr-x | t/lib/errno.t | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/t/lib/errno.t b/t/lib/errno.t index d173cd9a80..02f5ce2ca6 100755 --- a/t/lib/errno.t +++ b/t/lib/errno.t @@ -3,7 +3,11 @@ BEGIN { unless(grep /blib/, @INC) { chdir 't' if -d 't'; - @INC = '../lib'; + if ($^O eq 'MacOS') { + @INC = qw(: ::lib ::macos:lib); + } else { + @INC = '../lib'; + } } } |