diff options
author | Michael G. Schwern <schwern@pobox.com> | 2005-04-07 08:15:00 -0700 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-04-08 16:17:49 +0000 |
commit | 087dded793b7dd8915667b14c757cf914c212cc9 (patch) | |
tree | e0f8bf31cab1f35968459a6fdaa6bc7d272f4cd7 /lib | |
parent | 3e5584e2247a5e9e0a41a86051fed7ff3b245da9 (diff) | |
download | perl-087dded793b7dd8915667b14c757cf914c212cc9.tar.gz |
Re: [ANNOUNCE] ExtUtils::MakeMaker 6.27
Message-ID: <20050407221500.GB6223@windhund.schwern.org>
Fix duplicate target warnings
p4raw-id: //depot/perl@24212
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ExtUtils/MM_Any.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExtUtils/MM_Any.pm b/lib/ExtUtils/MM_Any.pm index 86e1ae939a..f54b194e2c 100644 --- a/lib/ExtUtils/MM_Any.pm +++ b/lib/ExtUtils/MM_Any.pm @@ -2,7 +2,7 @@ package ExtUtils::MM_Any; use strict; use vars qw($VERSION @ISA); -$VERSION = '0.12'; +$VERSION = '0.12_01'; use File::Spec; BEGIN { @ISA = qw(File::Spec); } @@ -524,7 +524,7 @@ sub dir_target { my $make = ''; foreach my $dir (@dirs) { $make .= sprintf <<'MAKE', ($dir) x 7; -%s$(DFSEP).exists : +%s$(DFSEP).exists :: Makefile.PL $(NOECHO) $(MKPATH) %s $(NOECHO) $(CHMOD) 755 %s $(NOECHO) $(TOUCH) %s$(DFSEP).exists |