diff options
author | Ronald J. Kimball <rjk@linguist.dartmouth.edu> | 2001-09-21 08:34:40 -0400 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2001-09-21 17:08:24 +0000 |
commit | 3b825e419da1c361eab06a1e6d287276c0aef241 (patch) | |
tree | 3bf9831a1ca2b68cc3821988b1fd9d8cdcc2f6e0 /utils/pl2pm.PL | |
parent | d5115885304a47d8240951ede80584b00fa589b6 (diff) | |
download | perl-3b825e419da1c361eab06a1e6d287276c0aef241.tar.gz |
avoid v-strings with require/use
Message-Id: <20010921123440.A148500@linguist.thayer.dartmouth.edu>
p4raw-id: //depot/perl@12113
Diffstat (limited to 'utils/pl2pm.PL')
-rw-r--r-- | utils/pl2pm.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/pl2pm.PL b/utils/pl2pm.PL index 5637818fa1..d135bc8c45 100644 --- a/utils/pl2pm.PL +++ b/utils/pl2pm.PL @@ -129,7 +129,7 @@ while (<>) { if ( open(PM, ">$newname") ) { print PM <<"END"; package $newpack; -require 5.6.0; +use 5.006; require Exporter; $carp \@ISA = qw(Exporter); |