diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-03-24 15:36:53 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-03-24 15:36:53 +0000 |
commit | 01a4b0117922c61b6d663938788b6a2ff9b9210b (patch) | |
tree | 87962a868d644e5fec3fe523012508e335be0704 /lib | |
parent | 3a018c0dd65ef4885f42f44be83e1571403f6fd9 (diff) | |
download | iurt-01a4b0117922c61b6d663938788b6a2ff9b9210b.tar iurt-01a4b0117922c61b6d663938788b6a2ff9b9210b.tar.gz iurt-01a4b0117922c61b6d663938788b6a2ff9b9210b.tar.bz2 iurt-01a4b0117922c61b6d663938788b6a2ff9b9210b.tar.xz iurt-01a4b0117922c61b6d663938788b6a2ff9b9210b.zip |
(get_build_requires) recreate_srpm() is actually a method call
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Iurt/Urpmi.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Iurt/Urpmi.pm b/lib/Iurt/Urpmi.pm index 3c5e4e3..dd593be 100644 --- a/lib/Iurt/Urpmi.pm +++ b/lib/Iurt/Urpmi.pm @@ -308,7 +308,7 @@ sub get_build_requires { my $urpm = new URPM; foreach my $p (@{$run->{todo}}) { my ($dir, $srpm, $s) = @$p; - recreate_srpm($self, $run, $config, $chroot_tmp, $dir, $srpm, $run->{user}) or return; + $self->recreate_srpm($run, $config, $chroot_tmp, $dir, $srpm, $run->{user}) or return; $s or next; my $id = $urpm->parse_rpm("$dir/$srpm"); my $pkg = $urpm->{depslist}[$id]; |