mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
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:
parent
eb3c93f401
commit
b5a370970f
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user