summaryrefslogtreecommitdiffstats
path: root/meta/packages/apt/apt-native.inc
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2007-08-21 14:00:13 +0000
committerRichard Purdie <richard@openedhand.com>2007-08-21 14:00:13 +0000
commit2075cb72ac072d658f68c15e1f0e1e41b1e96233 (patch)
treee13c6591b132cf6ed3faedff79ed4717a1d0767d /meta/packages/apt/apt-native.inc
parenta4b8304b62d6bf4b522769d5d9283050a5e63f3c (diff)
downloadpoky-2075cb72ac072d658f68c15e1f0e1e41b1e96233.tar.gz
apt: Add db/db-native as a DEPENDS so apt-ftparchive gets built (needed by deb rootfs creation
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2531 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/apt/apt-native.inc')
-rw-r--r--meta/packages/apt/apt-native.inc6
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/packages/apt/apt-native.inc b/meta/packages/apt/apt-native.inc
index 942f4991d3..75cd8f47cd 100644
--- a/meta/packages/apt/apt-native.inc
+++ b/meta/packages/apt/apt-native.inc
@@ -1,11 +1,13 @@
1require apt.inc 1require apt.inc
2inherit native 2inherit native
3 3
4DEPENDS += "dpkg-native curl-native" 4DEPENDS += "dpkg-native curl-native db-native"
5FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/apt-${PV}" 5FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/apt-${PV}"
6PACKAGES = "" 6PACKAGES = ""
7USE_NLS = "no" 7USE_NLS = "no"
8 8
9SRC_URI += "file://db_linking_hack.patch;patch=1"
10
9python do_stage () { 11python do_stage () {
10 bb.build.exec_func('do_stage_base', d) 12 bb.build.exec_func('do_stage_base', d)
11 bb.build.exec_func('do_stage_config', d) 13 bb.build.exec_func('do_stage_config', d)
@@ -35,7 +37,7 @@ do_stage_base () {
35 install -m 0755 bin/apt-get ${bindir}/ 37 install -m 0755 bin/apt-get ${bindir}/
36 install -m 0755 bin/apt-config ${bindir}/ 38 install -m 0755 bin/apt-config ${bindir}/
37 install -m 0755 bin/apt-cache ${bindir}/ 39 install -m 0755 bin/apt-cache ${bindir}/
38 40 install -m 0755 bin/apt-ftparchive ${bindir}/
39 install -m 0755 bin/apt-sortpkgs ${bindir}/ 41 install -m 0755 bin/apt-sortpkgs ${bindir}/
40 install -m 0755 bin/apt-extracttemplates ${bindir}/ 42 install -m 0755 bin/apt-extracttemplates ${bindir}/
41 43