diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2007-08-08 12:52:56 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2007-08-08 12:52:56 +0200 |
commit | b799e134fc730519cc8f0c0ea4387badffac4092 (patch) | |
tree | 29465ced916093a4bcc1a3ad880c0a01d2a21573 /cmdline | |
parent | c05b6385ee33b72927c229b5279ee2f5383ad414 (diff) |
* cmdline/apt-get.cc:
- remove YnPrompt when a XS-Vcs- tag is found, improve the
notice (LP: #129575)
Diffstat (limited to 'cmdline')
-rw-r--r-- | cmdline/apt-get.cc | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index ead053136..e7b7d5204 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -2130,20 +2130,17 @@ bool DoSource(CommandLine &CmdL) pos += vcs.length()+2; string::size_type epos = srec.find("\n", pos); string uri = srec.substr(pos,epos-pos).c_str(); - ioprintf(c1out, _("WARNING: '%s' is maintained in " + ioprintf(c1out, _("NOTICE: '%s' packaging is maintained in " "the '%s' version control system at:\n" "%s\n"), Src.c_str(), vcs.c_str(), uri.c_str()); if(vcs == "Bzr") ioprintf(c1out,_("Please use:\n" "bzr get %s\n" - "to modify the package.\n"), + "to retrieve the latest (possible unreleased) " + "updates to the package.\n"), uri.c_str()); - ioprintf(c1out, "Are you sure you want to continue [yN]? "); - if(!YnPrompt(false)) - return _error->Error(_("Abort.")); - else - break; + break; } // Back track |