summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/perl/lib/File/Spec.pm
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2001-05-24 18:21:31 +0000
committermillert <millert@openbsd.org>2001-05-24 18:21:31 +0000
commitc48bdce47de487644c5bf49fc71f7db60e4f07d6 (patch)
tree1044cea90429d4b1485356ed038fb38b7dba2eb2 /gnu/usr.bin/perl/lib/File/Spec.pm
parentAdd isakmpd.pid to the FILES section. (diff)
downloadwireguard-openbsd-c48bdce47de487644c5bf49fc71f7db60e4f07d6.tar.xz
wireguard-openbsd-c48bdce47de487644c5bf49fc71f7db60e4f07d6.zip
stock perl 5.6.1
Diffstat (limited to 'gnu/usr.bin/perl/lib/File/Spec.pm')
-rw-r--r--gnu/usr.bin/perl/lib/File/Spec.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/usr.bin/perl/lib/File/Spec.pm b/gnu/usr.bin/perl/lib/File/Spec.pm
index 40f5345140c..3f79d74b66a 100644
--- a/gnu/usr.bin/perl/lib/File/Spec.pm
+++ b/gnu/usr.bin/perl/lib/File/Spec.pm
@@ -3,12 +3,13 @@ package File::Spec;
use strict;
use vars qw(@ISA $VERSION);
-$VERSION = '0.8';
+$VERSION = 0.82 ;
my %module = (MacOS => 'Mac',
MSWin32 => 'Win32',
os2 => 'OS2',
- VMS => 'VMS');
+ VMS => 'VMS',
+ epoc => 'Epoc');
my $module = $module{$^O} || 'Unix';
require "File/Spec/$module.pm";