summaryrefslogtreecommitdiff
path: root/apt-pkg/init.cc
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 17:05:34 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 17:05:34 +0000
commit91fbc168ee6535970e6af543254988e9eda6d4c6 (patch)
treee475c8fd6f9a1fc9480e38f3f8fc2df30230a5bf /apt-pkg/init.cc
parentbd019bd12158c94b4e3998cd1b8dd570d6a89153 (diff)
* Print a slightly clearer error message if no packagin...
Author: mdz Date: 2004-02-27 00:46:44 GMT * Print a slightly clearer error message if no packaging systems are available (Closes: #233681)
Diffstat (limited to 'apt-pkg/init.cc')
-rw-r--r--apt-pkg/init.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/init.cc b/apt-pkg/init.cc
index abaee9a7a..f4b816c0b 100644
--- a/apt-pkg/init.cc
+++ b/apt-pkg/init.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: init.cc,v 1.20 2003/02/09 20:31:05 doogie Exp $
+// $Id: init.cc,v 1.21 2004/02/27 00:46:44 mdz Exp $
/* ######################################################################
Init - Initialize the package library
@@ -132,7 +132,7 @@ bool pkgInitSystem(Configuration &Cnf,pkgSystem *&Sys)
}
if (Sys == 0)
- return _error->Error(_("Unable to determine a suitable system type"));
+ return _error->Error(_("Unable to determine a suitable packaging system type"));
}
return Sys->Initialize(Cnf);