diff options
-rw-r--r-- | perl-install/pkgs.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index 8d1c07023..6d8d74c03 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -998,7 +998,8 @@ sub install($$$;$$) { foreach @transToInstall; } - #$trans->order or die "error ordering package list: " . c::rpmErrorString(); + my @checks = $trans->check; @checks and log::l("check failed : ".join("\n ", @checks)); + $trans->order or die "error ordering package list: " . c::rpmErrorString(); $trans->set_script_fd(fileno $LOG); log::l("rpm transactions start"); |