diff options
author | Craig A. Berry <craigberry@mac.com> | 2011-08-05 08:25:37 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2011-08-05 08:25:37 -0500 |
commit | 63f27fd71dd22aa00021eb1e4fde4faa55ec9524 (patch) | |
tree | ea1e60f2f910360f3141fd218a0dc3edf9fdaefd /cpan/Module-Metadata/lib/Module | |
parent | c9d1da359da6a3d527d7a64d9eed3f8ab441bb8b (diff) | |
download | perl-63f27fd71dd22aa00021eb1e4fde4faa55ec9524.tar.gz |
No dots in directory names, please.
Dot is the directory delimiter on VMS, so it's awkward at best to use
it in directory names. 4eb81ef279, "Update Module-Metadata to CPAN
version 1.000005" introduced two new directories with dots in the
name, which confused the manifest checker and broke the build on VMS.
Diffstat (limited to 'cpan/Module-Metadata/lib/Module')
-rw-r--r-- | cpan/Module-Metadata/lib/Module/Metadata.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpan/Module-Metadata/lib/Module/Metadata.pm b/cpan/Module-Metadata/lib/Module/Metadata.pm index 514dd1c16e..41d8214ef5 100644 --- a/cpan/Module-Metadata/lib/Module/Metadata.pm +++ b/cpan/Module-Metadata/lib/Module/Metadata.pm @@ -11,7 +11,7 @@ package Module::Metadata; use strict; use vars qw($VERSION); -$VERSION = '1.000005'; +$VERSION = '1.000005_01'; $VERSION = eval $VERSION; use File::Spec; |