projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
741df71
)
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
patch
|
blob
|
blame
|
history
warning.pl
patch
|
blob
|
blame
|
history
diff --git
a/bytecode.pl
b/bytecode.pl
index
cc096ac
..
e2a2f6c
100644
(file)
--- 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
(file)
--- a/
warning.pl
+++ b/
warning.pl
@@
-1,5
+1,8
@@
#!/usr/bin/perl
+BEGIN {
+ push @INC, './lib';
+}
use strict ;
sub DEFAULT_ON () { 1 }