diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-10-15 15:56:17 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-10-15 15:56:17 +0000 |
commit | 7cefa15aea00c58a956a54add36db7aa67316c37 (patch) | |
tree | 8cab1942620245ec20c3f51a06393aecdd0e6a9a /libexec/makewhatis | |
parent | 3159ef110dd837692199d68a8b6bf34c41cf60c2 (diff) |
Use old-style version number when requiring at least perl 5.6.0.
Fixes a portability warning from perl-5.8.0; espie@ OK
Diffstat (limited to 'libexec/makewhatis')
-rw-r--r-- | libexec/makewhatis/makewhatis.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/makewhatis/makewhatis.pl b/libexec/makewhatis/makewhatis.pl index 5cee0e6da74..f700cd6f26d 100644 --- a/libexec/makewhatis/makewhatis.pl +++ b/libexec/makewhatis/makewhatis.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl -w # ex:ts=8 sw=4: -# $OpenBSD: makewhatis.pl,v 1.21 2002/04/16 20:07:07 espie Exp $ +# $OpenBSD: makewhatis.pl,v 1.22 2002/10/15 15:56:16 millert Exp $ # # Copyright (c) 2000 Marc Espie. # @@ -26,7 +26,7 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -require 5.6.0; +require 5.006_000; use strict; use File::Find; |