diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/ExtUtils/MM_Darwin.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/ExtUtils/MM_Darwin.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Master/tlpkg/tlperl/lib/ExtUtils/MM_Darwin.pm b/Master/tlpkg/tlperl/lib/ExtUtils/MM_Darwin.pm index 96ec6fbc2c6..861a544172a 100644 --- a/Master/tlpkg/tlperl/lib/ExtUtils/MM_Darwin.pm +++ b/Master/tlpkg/tlperl/lib/ExtUtils/MM_Darwin.pm @@ -7,7 +7,7 @@ BEGIN { our @ISA = qw( ExtUtils::MM_Unix ); } -our $VERSION = '6.66'; +our $VERSION = '6.98'; =head1 NAME @@ -20,7 +20,7 @@ ExtUtils::MM_Darwin - special behaviors for OS X =head1 DESCRIPTION -See L<ExtUtils::MM_Unix> for L<ExtUtils::MM_Any> for documention on the +See L<ExtUtils::MM_Unix> for L<ExtUtils::MM_Any> for documentation on the methods overridden here. =head2 Overriden Methods @@ -33,14 +33,14 @@ Turn off Apple tar's tendency to copy resource forks as "._foo" files. sub init_dist { my $self = shift; - + # Thank you, Apple, for breaking tar and then breaking the work around. # 10.4 wants COPY_EXTENDED_ATTRIBUTES_DISABLE while 10.5 wants # COPYFILE_DISABLE. I'm not going to push my luck and instead just # set both. - $self->{TAR} ||= + $self->{TAR} ||= 'COPY_EXTENDED_ATTRIBUTES_DISABLE=1 COPYFILE_DISABLE=1 tar'; - + $self->SUPER::init_dist(@_); } |