From db7819dbf217c351527348c578ddf5be05333484 Mon Sep 17 00:00:00 2001 From: Adam Spiers Date: Wed, 16 May 2012 11:00:38 +0100 Subject: [PATCH] Bug #36478 - fix Perl warnings from 'require 5.6.1;' https://savannah.gnu.org/bugs/?36478 --- bin/chkstow.in | 2 +- bin/stow.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/chkstow.in b/bin/chkstow.in index 07e18f1..c35ba26 100755 --- a/bin/chkstow.in +++ b/bin/chkstow.in @@ -3,7 +3,7 @@ use strict; use warnings; -require 5.6.1; +require 5.006_001; use File::Find; use Getopt::Long; diff --git a/bin/stow.in b/bin/stow.in index 8d70f76..e8fa64b 100755 --- a/bin/stow.in +++ b/bin/stow.in @@ -409,7 +409,7 @@ translation approved by the Free Software Foundation. use strict; use warnings; -require 5.6.1; +require 5.006_001; use POSIX qw(getcwd); use Getopt::Long;