diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-05-30 20:24:10 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-05-30 20:24:10 +0000 |
commit | 69ff8adf802894e0957dae2b89f4e2c30fa38e90 (patch) | |
tree | 8bfea6671ef071d30729428acaf05e9e7f5a6429 /lib/ExtUtils/Command.pm | |
parent | 588cafc81b146d309df37bae231b533d51bccb74 (diff) | |
download | perl-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.pm | 4 |
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); |