mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-16 18:40:03 +00:00
cc4e9fbd82
devmapper update also updated lvm2. Thus build fails with: patching file daemons/lvmdbusd/utils.py Hunk #1 FAILED at 778. 1 out of 1 hunk FAILED -- rejects in file daemons/lvmdbusd/utils.py - Drop the submitted patch - Move PV to lvm2.inc to ensure we keep it in sync for libdevmapper and lvm2 - refresh patches Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
18 lines
393 B
BlitzBasic
18 lines
393 B
BlitzBasic
# Break circular dependencies, only populate sysroot (header,
|
|
# libraries) to other recipe for compiling, recipe lvm2
|
|
# generates package libdevmapper
|
|
require lvm2.inc
|
|
|
|
DEPENDS += "autoconf-archive-native"
|
|
|
|
TARGET_CC_ARCH += "${LDFLAGS}"
|
|
|
|
do_install() {
|
|
oe_runmake 'DESTDIR=${D}' -C libdm install
|
|
}
|
|
|
|
# Do not generate package libdevmapper
|
|
PACKAGES = ""
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|