summaryrefslogtreecommitdiff
path: root/libexec/makewhatis
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-10-15 15:56:17 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-10-15 15:56:17 +0000
commit7cefa15aea00c58a956a54add36db7aa67316c37 (patch)
tree8cab1942620245ec20c3f51a06393aecdd0e6a9a /libexec/makewhatis
parent3159ef110dd837692199d68a8b6bf34c41cf60c2 (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.pl4
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;