opkg: ensure the data directory is created

We need to ensure the data directory (/usr/lib/opkg) is created and shipped in
the package as it's used by opkg to create a lock file.

Signed-off-by: Joshua Lock <josh@linux.intel.com>
This commit is contained in:
Joshua Lock 2010-06-10 15:04:38 +01:00
parent eb3c93f401
commit b5a370970f

View File

@ -8,13 +8,18 @@ RDEPENDS_${PN}_virtclass-native = ""
RDEPENDS_${PN}_virtclass-nativesdk = ""
PACKAGE_ARCH_update-alternatives-cworth = "all"
PR = "r12"
PR = "r13"
PACKAGES =+ "libopkg-dev libopkg update-alternatives-cworth"
FILES_update-alternatives-cworth = "${bindir}/update-alternatives"
FILES_libopkg-dev = "${libdir}/*.a ${libdir}/*.la ${libdir}/*.so"
FILES_libopkg = "${libdir}/*.so.*"
FILES_libopkg = "${libdir}/*.so.* ${libdir}/opkg/"
# We need to create the lock directory
do_install_append() {
install -d ${D}${libdir}/opkg
}
# Define a variable to allow distros to run configure earlier.
# (for example, to enable loading of ethernet kernel modules before networking starts)