[Module-build-checkins] Module-Build/lib/Module/Build/Platform Unix.pm,1.10,1.11
Status: Beta
Brought to you by:
kwilliams
From: Ken W. <kwi...@us...> - 2005-01-05 04:39:07
|
Update of /cvsroot/module-build/Module-Build/lib/Module/Build/Platform In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8221/lib/Module/Build/Platform Modified Files: Unix.pm Log Message: Integrate from branch Index: Unix.pm =================================================================== RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Platform/Unix.pm,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Unix.pm 10 Oct 2004 04:39:34 -0000 1.10 --- Unix.pm 5 Jan 2005 04:38:52 -0000 1.11 *************** *** 9,14 **** sub make_tarball { my $self = shift; ! $self->{args}{tar} ||= 'tar'; ! $self->{args}{gzip} ||= 'gzip'; $self->SUPER::make_tarball(@_); } --- 9,14 ---- sub make_tarball { my $self = shift; ! $self->{args}{tar} ||= ['tar']; ! $self->{args}{gzip} ||= ['gzip']; $self->SUPER::make_tarball(@_); } |