From cd39565a5af70bca5865d1ebadc8f69ce91ea0dc Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 22 Apr 2026 16:09:41 -0700 Subject: [PATCH] fftw: Remove abspaths in binaries coming via FFTW_CC Signed-off-by: Khem Raj --- meta-oe/recipes-support/fftw/fftw_3.3.11.bb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/meta-oe/recipes-support/fftw/fftw_3.3.11.bb b/meta-oe/recipes-support/fftw/fftw_3.3.11.bb index dd6dce206b..e33d12af10 100644 --- a/meta-oe/recipes-support/fftw/fftw_3.3.11.bb +++ b/meta-oe/recipes-support/fftw/fftw_3.3.11.bb @@ -6,7 +6,6 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" SRC_URI = " \ http://www.fftw.org/fftw-${PV}.tar.gz \ file://0001-NEON-autodetection-segfaults-assume-neon-present.patch \ - file://0001-Remove-the-CC-and-CFLAGS-from-the-build.patch \ file://install-bench.patch \ file://run-ptest \ " @@ -44,7 +43,7 @@ do_configure() { cd ${B} # configure only oe_runconf --enable-long-double - mv ${B} ${WORKDIR}/build-fftwl + mv ${B} ${WORKDIR}/build-fftwl # configure fftwf rm -rf ${WORKDIR}/build-fftwf @@ -58,7 +57,7 @@ do_configure() { do_compile() { for lib in fftw fftwl fftwf; do cd ${WORKDIR}/build-$lib - test -n "${TOOLCHAIN_OPTIONS}" && sed -i -e 's|${TOOLCHAIN_OPTIONS}||g' config.h + sed -i -e 's|${DEBUG_PREFIX_MAP}||g; s|--sysroot=${STAGING_DIR_TARGET}||g' config.h autotools_do_compile done }