[Module-build-checkins] Module-Build/lib/Module/Build/Platform Unix.pm,1.9,1.9.2.1
Status: Beta
Brought to you by:
kwilliams
From: Ken W. <kwi...@us...> - 2005-01-05 04:37:43
|
Update of /cvsroot/module-build/Module-Build/lib/Module/Build/Platform In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7983/lib/Module/Build/Platform Modified Files: Tag: release-0_26_branch Unix.pm Log Message: Use split_like_shell() on 'gzip' and 'tar' stuff Index: Unix.pm =================================================================== RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Platform/Unix.pm,v retrieving revision 1.9 retrieving revision 1.9.2.1 diff -C2 -d -r1.9 -r1.9.2.1 *** Unix.pm 2 Apr 2004 02:19:51 -0000 1.9 --- Unix.pm 5 Jan 2005 04:37:33 -0000 1.9.2.1 *************** *** 29,34 **** sub make_tarball { my $self = shift; ! $self->{args}{tar} ||= 'tar'; ! $self->{args}{gzip} ||= 'gzip'; $self->SUPER::make_tarball(@_); } --- 29,34 ---- sub make_tarball { my $self = shift; ! $self->{args}{tar} ||= ['tar']; ! $self->{args}{gzip} ||= ['gzip']; $self->SUPER::make_tarball(@_); } |