diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 17:04:26 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 17:04:26 +0000 |
commit | c33d7c4d6b007137ba6cf71cba87dd4bf5547e0e (patch) | |
tree | cde9ed9c7c8d53d7e5f0b5f063f1e1eda637a714 /cmdline | |
parent | 8b33e866e76b7e41a3b884d596a8cc3f462e064a (diff) |
* Don't suggest apt-get -f install to correct broken bu...
Author: mdz
Date: 2003-12-24 22:53:10 GMT
* Don't suggest apt-get -f install to correct broken build-deps; broken
installed packages are rarely the cause (Closes: #220858)
Diffstat (limited to 'cmdline')
-rw-r--r-- | cmdline/apt-get.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 604f14aa6..05d70a7fe 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: apt-get.cc,v 1.149 2003/12/20 23:58:55 mdz Exp $ +// $Id: apt-get.cc,v 1.150 2003/12/24 22:53:10 mdz Exp $ /* ###################################################################### apt-get - Cover for dpkg @@ -2222,8 +2222,7 @@ bool DoBuildDep(CommandLine &CmdL) // Now we check the state of the packages, if (Cache->BrokenCount() != 0) - return _error->Error(_("Some broken packages were found while trying to process build-dependencies for %s.\n" - "You might want to run `apt-get -f install' to correct these."),*I); + return _error->Error(_("Build-dependencies for %s could not be satisfied."),*I); } if (InstallPackages(Cache, false, true) == false) |