blob: 2652f931ea2c07a1af9ae1be1cc9cd1fd2e7d868 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
SECTION = "base"
include ipkg_${PV}.bb
# NOTE: ipkg now obeys ${libdir}, so ipkg-native now installs
# things into the wrong location inside of offline_root. Backup
# the target libdir and use that.
target_libdir := "${libdir}"
DEFAULT_PREFERENCE="-1"
inherit native
EXTRA_OECONF += "--with-ipkgdir=${target_libdir}/ipkg"
DEPENDS = "libtool-native automake-native"
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/ipkg-${PV}"
PROVIDES = ""
|