You need to put this into a function, and call it from various places, instead of just copy-pasting code.
Alex On Fri, 12 Jul 2024 at 13:11, Oleksandr Hnatiuk via lists.openembedded.org <[email protected]> wrote: > > Fix is only done for target. Copy same code for nativesdk. > > Signed-off-by: Oleksiy Obitotskyy <[email protected]> > Signed-off-by: Oleksandr Hnatiuk <[email protected]> > --- > meta/recipes-support/icu/icu_75-1.bb | 19 +++++++++++++++++++ > 1 file changed, 19 insertions(+) > > diff --git a/meta/recipes-support/icu/icu_75-1.bb > b/meta/recipes-support/icu/icu_75-1.bb > index 27fe392e4d4e..4b7023fd06e1 100644 > --- a/meta/recipes-support/icu/icu_75-1.bb > +++ b/meta/recipes-support/icu/icu_75-1.bb > @@ -39,6 +39,15 @@ do_compile:prepend:class-target () { > -i ${B}/tools/toolutil/Makefile > } > > +do_compile:prepend:class-nativesdk () { > + # Make sure certain build host references do not end up being compiled > + # in the image. This only affects libicutu and icu-dbg > + sed \ > + -e 's,DU_BUILD=,DU_BUILD_unused=,g' \ > + -e '/^CPPFLAGS.*/ s,--sysroot=${STAGING_DIR_TARGET},,g' \ > + -i ${B}/tools/toolutil/Makefile > +} > + > PREPROCESS_RELOCATE_DIRS = "${datadir}/${BPN}/${PV}" > do_install:append:class-native() { > mkdir -p ${D}/${STAGING_ICU_DIR_NATIVE}/config > @@ -66,6 +75,16 @@ do_install:append:class-target() { > ${D}/${libdir}/${BPN}/${@icu_install_folder(d)}/pkgdata.inc > } > > +do_install:append:class-nativesdk() { > + # Remove build host references... > + sed -i \ > + -e 's,--sysroot=${STAGING_DIR_TARGET},,g' \ > + -e 's|${DEBUG_PREFIX_MAP}||g' \ > + -e 's:${HOSTTOOLS_DIR}/::g' \ > + ${D}/${libdir}/${BPN}/${@icu_install_folder(d)}/Makefile.inc \ > + ${D}/${libdir}/${BPN}/${@icu_install_folder(d)}/pkgdata.inc > +} > + > PACKAGES =+ "libicudata libicuuc libicui18n libicutu libicuio" > > FILES:${PN}-dev += "${libdir}/${BPN}/" > -- > 2.35.6 > > > >
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#201821): https://lists.openembedded.org/g/openembedded-core/message/201821 Mute This Topic: https://lists.openembedded.org/mt/107179994/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
