aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/apt
diff options
context:
space:
mode:
authorFilip Zyzniewski <filip.zyzniewski@gmail.com>2011-02-13 03:26:58 +0000
committerTom Rini <tom_rini@mentor.com>2011-02-14 10:24:19 -0700
commit41e0fbf792037f249d1b8d283b3de81718887c9f (patch)
tree231cbfb1777489f1dc4cf422d6a0f9aa1776b616 /recipes/apt
parentb32d23948fa698057d274b94d09ab49d729064a4 (diff)
downloadopenembedded-41e0fbf792037f249d1b8d283b3de81718887c9f.tar.gz
deb packages support: switch from /var/dpkg to /var/lib/dpkg
OE generally tries to use /var/dpkg, but the change is missing in some places, so it is needed to move completely to one of the options. Keeping the dpkg's default /var/lib/dpkg causes less maintenance overhead for OE. Signed-off-by: Filip Zyzniewski <filip.zyzniewski@gmail.com> Signed-off-by: Tom Rini <tom_rini@mentor.com>
Diffstat (limited to 'recipes/apt')
-rw-r--r--recipes/apt/files/apt.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/apt/files/apt.conf b/recipes/apt/files/apt.conf
index 2bd9ddbfaf..5b18b91381 100644
--- a/recipes/apt/files/apt.conf
+++ b/recipes/apt/files/apt.conf
@@ -3,7 +3,7 @@ Dir "${STAGING_DIR_NATIVE}/"
State "var/lib/apt/"
{
Lists "lists/";
- status "${IMAGE_ROOTFS}/var/dpkg/status";
+ status "${IMAGE_ROOTFS}/var/lib/dpkg/status";
};
Cache "var/cache/apt/"
{
@@ -39,5 +39,5 @@ APT
};
};
-DPkg::Options {"--root=${IMAGE_ROOTFS}";"--admindir=${IMAGE_ROOTFS}/var/dpkg";"--force-all";"--no-debsig"};
+DPkg::Options {"--root=${IMAGE_ROOTFS}";"--admindir=${IMAGE_ROOTFS}/var/lib/dpkg";"--force-all";"--no-debsig"};
};