View | Details | Raw Unified | Return to bug 33912
Collapse All | Expand All

(-)a/apt-pkg/rpm/rpmpm.cc (-3 / +2 lines)
Lines 679-685 bool pkgRPMExtPM::ExecRPM(Item::RPMOps op, const std::vector<apt_item> &files) Link Here
679
      return _error->Error(_("Sub-process %s exited unexpectedly"),Args[0]);
679
      return _error->Error(_("Sub-process %s exited unexpectedly"),Args[0]);
680
   }
680
   }
681
681
682
   if (quiet <= 2)
682
   if (Interactive == true)
683
      cout << _("Done.") << endl;
683
      cout << _("Done.") << endl;
684
684
685
   return true;
685
   return true;
Lines 1006-1012 bool pkgRPMLibPM::Process(const std::vector<apt_item> &install, Link Here
1006
      _error->Error(_("Some errors occurred while running transaction"));
1006
      _error->Error(_("Some errors occurred while running transaction"));
1007
   } else {
1007
   } else {
1008
      Success = true;
1008
      Success = true;
1009
      if (quiet <= 2)
1009
      if (Interactive == true)
1010
	 cout << _("Done.") << endl;
1010
	 cout << _("Done.") << endl;
1011
   }
1011
   }
1012
   rpmpsFree(probs);
1012
   rpmpsFree(probs);
1013
- 

Return to bug 33912