summaryrefslogtreecommitdiff
path: root/lib/ExtUtils/Command.pm
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-05-30 20:24:10 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-05-30 20:24:10 +0000
commit69ff8adf802894e0957dae2b89f4e2c30fa38e90 (patch)
tree8bfea6671ef071d30729428acaf05e9e7f5a6429 /lib/ExtUtils/Command.pm
parent588cafc81b146d309df37bae231b533d51bccb74 (diff)
downloadperl-69ff8adf802894e0957dae2b89f4e2c30fa38e90.tar.gz
Upgrade to ExtUtils::MakeMaker 6.01.
p4raw-id: //depot/perl@16904
Diffstat (limited to 'lib/ExtUtils/Command.pm')
-rw-r--r--lib/ExtUtils/Command.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExtUtils/Command.pm b/lib/ExtUtils/Command.pm
index b4f66f8a32..22eece7fa6 100644
--- a/lib/ExtUtils/Command.pm
+++ b/lib/ExtUtils/Command.pm
@@ -11,7 +11,7 @@ require Exporter;
use vars qw(@ISA @EXPORT $VERSION);
@ISA = qw(Exporter);
@EXPORT = qw(cp rm_f rm_rf mv cat eqtime mkpath touch test_f);
-$VERSION = '1.03_01';
+$VERSION = '1.04';
my $Is_VMS = $^O eq 'VMS';
@@ -126,7 +126,7 @@ sub touch
expand_wildcards();
while (@ARGV)
{
- my $file = shift(@ARGV);
+ my $file = shift(@ARGV);
open(FILE,">>$file") || die "Cannot write $file:$!";
close(FILE);
utime($t,$t,$file);