diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-01-12 13:57:45 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-01-12 13:57:45 +0000 |
commit | c560d966b003defa80c2baa9fedc0a294d2b3afe (patch) | |
tree | 022a5cfdc9d8095bf0d565f06819db309bf9b234 /makedef.pl | |
parent | 1c14aae0b07e7d831ac07cadc1b3a73ceba9637c (diff) | |
download | perl-c560d966b003defa80c2baa9fedc0a294d2b3afe.tar.gz |
makedef.pl should be able to load "strict"
p4raw-id: //depot/perl@29774
Diffstat (limited to 'makedef.pl')
-rw-r--r-- | makedef.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/makedef.pl b/makedef.pl index 12a17b37fc..6c0803317f 100644 --- a/makedef.pl +++ b/makedef.pl @@ -8,6 +8,8 @@ # # reads global.sym, pp.sym, perlvars.h, intrpvar.h, thrdvar.h, config.h # On OS/2 reads miniperl.map and the previous version of perl5.def as well + +BEGIN { unshift @INC, "lib" } use strict; use vars qw($PLATFORM $CCTYPE $FILETYPE $CONFIG_ARGS $ARCHNAME $PATCHLEVEL); |