summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorKevin Tian <kevin.tian@intel.com>2010-07-22 13:36:42 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-22 09:30:15 +0100
commitba8fad40585fa92a0a91909e00d990d5e347d92b (patch)
tree487d5977473f8394ea50fc8a29b69bee6995080f /meta
parentb02be74889ee06962792fffbf59f27eabc44e2e3 (diff)
downloadpoky-ba8fad40585fa92a0a91909e00d990d5e347d92b.tar.gz
opkg-utils: add do_install after NATIVE_INSTALL_WORKS
NATIVE_INSTALL_WORKS implicates an explicit do_install required or else its binaries are not installed to sysroot, which result in error like: sh: opkg-build not found Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Diffstat (limited to 'meta')
-rw-r--r--meta/packages/opkg-utils/opkg-utils_svn.bb7
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/packages/opkg-utils/opkg-utils_svn.bb b/meta/packages/opkg-utils/opkg-utils_svn.bb
index 17dfbab774..18259b3c39 100644
--- a/meta/packages/opkg-utils/opkg-utils_svn.bb
+++ b/meta/packages/opkg-utils/opkg-utils_svn.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
7 file://opkg.py;beginline=1;endline=18;md5=15917491ad6bf7acc666ca5f7cc1e083" 7 file://opkg.py;beginline=1;endline=18;md5=15917491ad6bf7acc666ca5f7cc1e083"
8RDEPENDS = "python" 8RDEPENDS = "python"
9RDEPENDS_virtclass-native = "" 9RDEPENDS_virtclass-native = ""
10PR = "r0" 10PR = "r1"
11 11
12SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=opkg-utils;proto=http \ 12SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=opkg-utils;proto=http \
13 file://index-ignore-filenotfound.patch" 13 file://index-ignore-filenotfound.patch"
@@ -17,6 +17,9 @@ S = "${WORKDIR}/opkg-utils"
17# Avoid circular dependencies from package_ipk.bbclass 17# Avoid circular dependencies from package_ipk.bbclass
18PACKAGES_virtclass-native = "" 18PACKAGES_virtclass-native = ""
19 19
20NATIVE_INSTALL_WORKS = "1" 20do_install() {
21 oe_runmake PREFIX=${prefix} DESTDIR=${D} install
22}
21 23
24NATIVE_INSTALL_WORKS = "1"
22BBCLASSEXTEND = "native" 25BBCLASSEXTEND = "native"