From: Gurusamy Sarathy Date: Fri, 27 Nov 1998 13:03:08 +0000 (+0000) Subject: ensure 'make regen_headers' even without perl installed X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=73f0cc2d7df5b14dbea315ed9c6a2e3ae1fb82e6;p=p5sagit%2Fp5-mst-13.2.git ensure 'make regen_headers' even without perl installed (suggested by Ilya Zakharevich) p4raw-id: //depot/perl@2321 --- diff --git a/bytecode.pl b/bytecode.pl index cc096ac..e2a2f6c 100644 --- a/bytecode.pl +++ b/bytecode.pl @@ -1,3 +1,6 @@ +BEGIN { + push @INC, './lib'; +} use strict; my %alias_to = ( U32 => [qw(PADOFFSET STRLEN)], diff --git a/warning.pl b/warning.pl index 86faf96..06e37f2 100644 --- a/warning.pl +++ b/warning.pl @@ -1,5 +1,8 @@ #!/usr/bin/perl +BEGIN { + push @INC, './lib'; +} use strict ; sub DEFAULT_ON () { 1 }