diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-11-12 23:20:11 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-11-12 23:20:11 +0000 |
commit | 27a91fb4eb666b3e2ececb9b2bd3b04d05181828 (patch) | |
tree | 264cc35f48d9e5857f8a277a441796b8f2913e31 /Porting | |
parent | 520974d5b0e293a154c61abceaf26077c8cafbd8 (diff) | |
download | perl-27a91fb4eb666b3e2ececb9b2bd3b04d05181828.tar.gz |
Porting/Maintainers.pm uses a _ prototype, which is a 5.10 feature, so
use 5.010; to trap 5.8.x and earlier before they choke.
p4raw-id: //depot/perl@32297
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/Maintainers.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Porting/Maintainers.pm b/Porting/Maintainers.pm index ce773ea0f3..e876f8cba6 100644 --- a/Porting/Maintainers.pm +++ b/Porting/Maintainers.pm @@ -7,6 +7,7 @@ package Maintainers; use strict; use lib "Porting"; +use 5.010; require "Maintainers.pl"; use vars qw(%Modules %Maintainers); |