summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 17:01:19 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 17:01:19 +0000
commit2aefd2c272c36d0a0761ef0d715f75321d8014af (patch)
tree935dad14b19fa6ea5d9a5ace3decccc8953738f3
parenteba2b51d9eb9d0ed6a7ffd540c076870105aecc0 (diff)
When building the dpkg command line, allow for 8192 cha...
Author: doogie Date: 2003-04-27 03:02:40 GMT When building the dpkg command line, allow for 8192 chars to be used, instead of only 1024.
-rw-r--r--apt-pkg/deb/dpkgpm.cc4
-rw-r--r--debian/changelog2
2 files changed, 4 insertions, 2 deletions
diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc
index 70c78fbb7..ea64ef089 100644
--- a/apt-pkg/deb/dpkgpm.cc
+++ b/apt-pkg/deb/dpkgpm.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: dpkgpm.cc,v 1.25 2002/04/24 05:40:47 jgg Exp $
+// $Id: dpkgpm.cc,v 1.26 2003/04/27 03:02:40 doogie Exp $
/* ######################################################################
DPKG Package Manager - Provide an interface to dpkg
@@ -329,7 +329,7 @@ bool pkgDPkgPM::RunScriptsWithPkgs(const char *Cnf)
bool pkgDPkgPM::Go()
{
unsigned int MaxArgs = _config->FindI("Dpkg::MaxArgs",350);
- unsigned int MaxArgBytes = _config->FindI("Dpkg::MaxArgBytes",1024);
+ unsigned int MaxArgBytes = _config->FindI("Dpkg::MaxArgBytes",8192);
if (RunScripts("DPkg::Pre-Invoke") == false)
return false;
diff --git a/debian/changelog b/debian/changelog
index e8dd88543..d76c1698a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -116,6 +116,8 @@ apt (0.5.4.9) unstable; urgency=low
* Insert some newlines in the cdrom change media message. Closes:
#154601.
* Add a rdepends command to apt-cache. Closes: #159864.
+ * When building the dpkg command line, allow for 8192 chars to be used,
+ instead of only 1024.
-- Adam Heath <doogie@debian.org> Sun, 02 Feb 2003 02:54:45 -0600