diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-12-29 17:27:50 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-12-29 17:27:50 +0000 |
commit | f7d174987f2e9e2d250eda5da71dd17f5435109e (patch) | |
tree | 8cd854b2aeb0d6d11f6f8fe02c43594b23cd98dd /win32 | |
parent | 4fb841ef8b04e5aa481a43c3c82397c8c4f1ccfa (diff) | |
download | perl-f7d174987f2e9e2d250eda5da71dd17f5435109e.tar.gz |
Fudge Config.pm so File::Spec does not croak.
p4raw-id: //depot/perlio@13934
Diffstat (limited to 'win32')
-rw-r--r-- | win32/FindExt.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win32/FindExt.pm b/win32/FindExt.pm index 30392687d1..8f1952fe96 100644 --- a/win32/FindExt.pm +++ b/win32/FindExt.pm @@ -2,6 +2,9 @@ package FindExt; our $VERSION = '1.00'; +# We (probably) have not got a Config.pm yet +BEGIN { $INC{'Config.pm'} = __FILE__ }; + use strict; use File::Find; use File::Basename; |