summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2005-09-16 11:46:43 +0000
committerMichael Vogt <michael.vogt@ubuntu.com>2005-09-16 11:46:43 +0000
commitceb00be9927199c067827a630ddc254149afcb57 (patch)
tree57c16555cb2162679ebe444ab331fccb4fdb7074 /cmdline
parent2c3ba9bb76eb4db943b51df702523e62051f2400 (diff)
* better error string for a failed dpkg-source
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/apt-get.cc1
1 files changed, 1 insertions, 0 deletions
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);
}
}