Stow now requires Perl 5.6.1 or newer, due to use of 'our'.
This commit is contained in:
parent
59b7835fd8
commit
8ce4d3be52
3 changed files with 7 additions and 4 deletions
6
README
6
README
|
@ -7,9 +7,9 @@ the database. Also, stow will never delete any files, directories, or links
|
||||||
that appear in a stow directory, so it is always possible to rebuild the
|
that appear in a stow directory, so it is always possible to rebuild the
|
||||||
target tree.
|
target tree.
|
||||||
|
|
||||||
Stow is a Perl script which should run correctly under Perl 4 and Perl 5. You
|
Stow is a Perl script which should run correctly under Perl 5.6.1 or
|
||||||
must install Perl before running Stow. For more information about Perl, see
|
newer. You must install Perl before running Stow. For more
|
||||||
http://www.perl.com/perl/.
|
information about Perl, see http://www.perl.com/perl/.
|
||||||
|
|
||||||
You can get the latest information about Stow from
|
You can get the latest information about Stow from
|
||||||
http://www.gnu.org/software/stow/stow.html
|
http://www.gnu.org/software/stow/stow.html
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
|
||||||
|
require 5.6.1;
|
||||||
|
|
||||||
use File::Find;
|
use File::Find;
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
|
|
||||||
|
|
3
stow.in
3
stow.in
|
@ -22,7 +22,8 @@
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
|
||||||
require 5.005;
|
require 5.6.1;
|
||||||
|
|
||||||
use POSIX qw(getcwd);
|
use POSIX qw(getcwd);
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue