ensure 'make regen_headers' even without perl installed
Gurusamy Sarathy [Fri, 27 Nov 1998 13:03:08 +0000 (13:03 +0000)]
(suggested by Ilya Zakharevich)

p4raw-id: //depot/perl@2321

bytecode.pl
warning.pl

index cc096ac..e2a2f6c 100644 (file)
@@ -1,3 +1,6 @@
+BEGIN {
+  push @INC, './lib';
+}
 use strict;
 my %alias_to = (
     U32 => [qw(PADOFFSET STRLEN)],
index 86faf96..06e37f2 100644 (file)
@@ -1,5 +1,8 @@
 #!/usr/bin/perl
 
+BEGIN {
+  push @INC, './lib';
+}
 use strict ;
 
 sub DEFAULT_ON  () { 1 }