diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-09-22 13:50:20 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-09-22 13:50:20 +0100 |
commit | 916e4025cf76677d80d3543dcfe683347234c30b (patch) | |
tree | cd4a50f495603b7e711977354a8d560184071e74 /regen.pl | |
parent | 2f2085406d63a2408b18e7f5a1601606a3540cf4 (diff) | |
download | perl-916e4025cf76677d80d3543dcfe683347234c30b.tar.gz |
Ensure regen.pl and the scripts that it calls can be run by older perls.
As the internal comments state, they may be all that is available, particularly
if trying to port something to an obscure platform. There's not that much that
needs changing to get back to 5.005, or from there to 5.004, but beyond there
is hard work, and really not worth it.
Diffstat (limited to 'regen.pl')
-rw-r--r-- | regen.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ # # regen.pl - a wrapper that runs all *.pl scripts to to autogenerate files -require 5.003; # keep this compatible, an old perl is all we may have before +require 5.004; # keep this compatible, an old perl is all we may have before # we build the new one # The idea is to move the regen_headers target out of the Makefile so that |