[Module-build-checkins] Module-Build/lib/Module/Build Base.pm,1.368,1.369
Status: Beta
Brought to you by:
kwilliams
From: Ken W. <kwi...@us...> - 2005-01-05 04:39:10
|
Update of /cvsroot/module-build/Module-Build/lib/Module/Build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8221/lib/Module/Build Modified Files: Base.pm Log Message: Integrate from branch Index: Base.pm =================================================================== RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v retrieving revision 1.368 retrieving revision 1.369 diff -C2 -d -r1.368 -r1.369 *** Base.pm 4 Jan 2005 05:26:38 -0000 1.368 --- Base.pm 5 Jan 2005 04:38:52 -0000 1.369 *************** *** 2481,2486 **** if ($self->{args}{tar}) { my $tar_flags = $self->{properties}{verbose} ? 'cvf' : 'cf'; ! $self->do_system($self->{args}{tar}, $tar_flags, "$file.tar", $dir); ! $self->do_system($self->{args}{gzip}, "$file.tar") if $self->{args}{gzip}; } else { require Archive::Tar; --- 2481,2486 ---- if ($self->{args}{tar}) { my $tar_flags = $self->{properties}{verbose} ? 'cvf' : 'cf'; ! $self->do_system($self->split_like_shell($self->{args}{tar}), $tar_flags, "$file.tar", $dir); ! $self->do_system($self->split_like_shell($self->{args}{gzip}), "$file.tar") if $self->{args}{gzip}; } else { require Archive::Tar; |