diff options
author | Steffen Mueller <smueller@cpan.org> | 2011-12-20 08:42:45 +0100 |
---|---|---|
committer | Steffen Mueller <smueller@cpan.org> | 2011-12-20 10:25:39 +0100 |
commit | 3d2a0adf2ae6b432e11668e511671510450d3243 (patch) | |
tree | 5a746eaf0bcf3af048c143eebce5f93ed89b95db /dist/Cwd/lib/File/Spec/Win32.pm | |
parent | db3e41d4b271fe793325534dbd8abf58985bdcdd (diff) | |
download | perl-3d2a0adf2ae6b432e11668e511671510450d3243.tar.gz |
Use tr/_// instead of eval $VERSION
Also bumps the version of all contained modules to 3.39_01, which is the
version of a new PathTools CPAN release (and the code is in sync with
this commit).
Diffstat (limited to 'dist/Cwd/lib/File/Spec/Win32.pm')
-rw-r--r-- | dist/Cwd/lib/File/Spec/Win32.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/Cwd/lib/File/Spec/Win32.pm b/dist/Cwd/lib/File/Spec/Win32.pm index fa5c3b16a6..8cfd1f76c8 100644 --- a/dist/Cwd/lib/File/Spec/Win32.pm +++ b/dist/Cwd/lib/File/Spec/Win32.pm @@ -5,8 +5,8 @@ use strict; use vars qw(@ISA $VERSION); require File::Spec::Unix; -$VERSION = '3.35'; -$VERSION = eval $VERSION; +$VERSION = '3.39_01'; +$VERSION =~ tr/_//; @ISA = qw(File::Spec::Unix); |