From: Michael Vogt Date: Fri, 16 Sep 2005 11:46:43 +0000 (+0000) Subject: * better error string for a failed dpkg-source X-Git-Tag: 0.7.21~373 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/ceb00be9927199c067827a630ddc254149afcb57?ds=sidebyside;hp=2c3ba9bb76eb4db943b51df702523e62051f2400 * better error string for a failed dpkg-source --- diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 7e079b91c..ac931373d 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -2013,6 +2013,7 @@ bool DoSource(CommandLine &CmdL) if (system(S) != 0) { fprintf(stderr,_("Unpack command '%s' failed.\n"),S); + fprintf(stderr,_("Check if the 'dpkg-dev' package is installed.\n"); _exit(1); } } diff --git a/debian/changelog b/debian/changelog index f83747a0f..9194b8a13 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ apt (0.6.41.1) unstable; urgency=low - unmount the cdrom when apt failed to locate any package files * allow cdrom failures and fallback to other sources in that case (closes: #44135) + * better error text when dpkg-source fails -- Michael Vogt Mon, 12 Sep 2005 13:45:53 +0200