mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 09:32:14 +02:00
mdadm: fix do_package failed when changed local.conf but not cleaned
reproduce steps: 1. add DISTRO_FEATURE_append = 'usrmerge' in local.conf 2. bitbake mdadm --success 3. remove DISTRO_FEATURE_append = 'usrmerge' from local.conf 4. bitbake mdadm -- failed when do_package it is not proper to change source Makefile during do_install by sed, fix by pass correct config to EXTRA_OEMAKE [YOCTO #13493] (From OE-Core rev: d0f285bd7d066e752b93e57b7f5468819016586f) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
db8e206970
commit
2a6773b376
@@ -43,13 +43,12 @@ CFLAGS_append_powerpc64 = ' -D__SANE_USERSPACE_TYPES__'
|
||||
CFLAGS_append_mipsarchn64 = ' -D__SANE_USERSPACE_TYPES__'
|
||||
CFLAGS_append_mipsarchn32 = ' -D__SANE_USERSPACE_TYPES__'
|
||||
|
||||
EXTRA_OEMAKE = 'CHECK_RUN_DIR=0 CXFLAGS="${CFLAGS}"'
|
||||
EXTRA_OEMAKE = 'CHECK_RUN_DIR=0 CXFLAGS="${CFLAGS}" SYSTEMD_DIR=${systemd_unitdir}/system \
|
||||
BINDIR="${base_sbindir}" UDEVDIR="${nonarch_base_libdir}/udev"'
|
||||
|
||||
DEBUG_OPTIMIZATION_append = " -Wno-error"
|
||||
|
||||
do_compile() {
|
||||
# Point to right sbindir
|
||||
sed -i -e "s;BINDIR = /sbin;BINDIR = $base_sbindir;" -e "s;UDEVDIR = /lib;UDEVDIR = $nonarch_base_libdir;" -e "s;SYSTEMD_DIR=/lib/systemd/system;SYSTEMD_DIR=${systemd_unitdir}/system;" ${S}/Makefile
|
||||
oe_runmake SYSROOT="${STAGING_DIR_TARGET}"
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user