diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-22 04:06:02 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-22 04:06:02 +0000 |
commit | 4630563179c25b3f03f084e0cb6a2165dda8f497 (patch) | |
tree | 0aab466e45c730aa2f391473a401db8632775506 /t/lib/filespec.t | |
parent | 3501ef0abaa1c66baf3e933e53c7d7ce42f7bcfe (diff) | |
download | perl-4630563179c25b3f03f084e0cb6a2165dda8f497.tar.gz |
backout change#1178 as it was dependent on an unapplied patch,
fix filespec.t to know its @INC
p4raw-link: @1178 on //depot/perl: a21df721bd2b1f6f6000b965978d9b9377c04298
p4raw-id: //depot/perl@1190
Diffstat (limited to 't/lib/filespec.t')
-rwxr-xr-x | t/lib/filespec.t | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/t/lib/filespec.t b/t/lib/filespec.t index 8ba43639f9..ca22d3e12b 100755 --- a/t/lib/filespec.t +++ b/t/lib/filespec.t @@ -1,11 +1,13 @@ -#!/usr/bin/perl - -print "1..4\n"; +#!./perl BEGIN { - $^O = ''; + $^O = ''; + chdir 't' if -d 't'; + @INC = '../lib'; } +print "1..4\n"; + use File::Spec; |