diff options
author | Kevin Tian <kevin.tian@intel.com> | 2010-07-22 13:36:42 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-22 09:30:15 +0100 |
commit | ba8fad40585fa92a0a91909e00d990d5e347d92b (patch) | |
tree | 487d5977473f8394ea50fc8a29b69bee6995080f /meta | |
parent | b02be74889ee06962792fffbf59f27eabc44e2e3 (diff) | |
download | poky-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.bb | 7 |
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" |
8 | RDEPENDS = "python" | 8 | RDEPENDS = "python" |
9 | RDEPENDS_virtclass-native = "" | 9 | RDEPENDS_virtclass-native = "" |
10 | PR = "r0" | 10 | PR = "r1" |
11 | 11 | ||
12 | SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=opkg-utils;proto=http \ | 12 | SRC_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 |
18 | PACKAGES_virtclass-native = "" | 18 | PACKAGES_virtclass-native = "" |
19 | 19 | ||
20 | NATIVE_INSTALL_WORKS = "1" | 20 | do_install() { |
21 | oe_runmake PREFIX=${prefix} DESTDIR=${D} install | ||
22 | } | ||
21 | 23 | ||
24 | NATIVE_INSTALL_WORKS = "1" | ||
22 | BBCLASSEXTEND = "native" | 25 | BBCLASSEXTEND = "native" |