diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2012-07-04 18:16:29 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-09 16:58:16 +0100 |
commit | 3ed08bd24cef39a85c528159a494e8f0dd001739 (patch) | |
tree | f5addd6a44f5a2f139095fe74eceedb54478d4e2 /meta/recipes-devtools/apt/apt.inc | |
parent | 9a0c0393871eda4bbcecfdd4b595f0c1b8e42edf (diff) | |
download | openembedded-core-3ed08bd24cef39a85c528159a494e8f0dd001739.tar.gz openembedded-core-3ed08bd24cef39a85c528159a494e8f0dd001739.tar.bz2 openembedded-core-3ed08bd24cef39a85c528159a494e8f0dd001739.zip |
apt 0.7.14: runtime error: Method file has died unexpectedly
When the length of the tmpdir is longer than 400, there is an error
when run "apt-get update":
Method file has died unexpectedly!
This is because the "char S[1024]" is not enough for long URI, S[2048]
would be enough.
[YOCTO #2689]
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Diffstat (limited to 'meta/recipes-devtools/apt/apt.inc')
-rw-r--r-- | meta/recipes-devtools/apt/apt.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/apt/apt.inc b/meta/recipes-devtools/apt/apt.inc index 563eda102d..973ccb5908 100644 --- a/meta/recipes-devtools/apt/apt.inc +++ b/meta/recipes-devtools/apt/apt.inc @@ -9,6 +9,7 @@ SRC_URI = "${DEBIAN_MIRROR}/main/a/apt/apt_${PV}.tar.gz \ file://makerace.patch \ file://remove-redeclaration.patch \ file://truncate-filename.patch \ + file://allocate-larger-memory.patch \ " inherit autotools gettext |