diff options
-rw-r--r-- | packdrake-pm/packdrake.pm | 4 | ||||
-rw-r--r-- | rpmtools.spec | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/packdrake-pm/packdrake.pm b/packdrake-pm/packdrake.pm index a9531af..36aa983 100644 --- a/packdrake-pm/packdrake.pm +++ b/packdrake-pm/packdrake.pm @@ -315,8 +315,6 @@ sub new { } sub cat_archive { - my $pid; - foreach (@_) { my $packer = new packdrake; @@ -330,7 +328,7 @@ sub cat_archive { open STDIN, "<$_" or die "packdrake: unable to open archive $_\n"; open STDERR, ">/dev/null" or die "packdrake: unable to open /dev/null\n"; - exec (($ENV{LD_LOADER} ? $ENV{LD_LOADER} : ()), split " ", $packer->{uncompress}); + exec(($ENV{LD_LOADER} ? $ENV{LD_LOADER} : @{[]}), split " ", $packer->{uncompress}); die "packdrake: unable to cat the archive with $packer->{uncompress}\n"; } diff --git a/rpmtools.spec b/rpmtools.spec index 81b6644..5ac0bad 100644 --- a/rpmtools.spec +++ b/rpmtools.spec @@ -1,5 +1,5 @@ %define name rpmtools -%define release 5mdk +%define release 6mdk # do not modify here, see Makefile in the CVS %define version 4.5 @@ -55,6 +55,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/*/* %changelog +* Wed Dec 4 2002 Pixel <pixel@mandrakesoft.com> 4.5-6mdk +- packdrake.pm is now perl_checker compliant + * Thu Nov 28 2002 Pixel <pixel@mandrakesoft.com> 4.5-5mdk - packdrake.pm is now perl_checker compliant |