From: Koen Kooi Date: Sun, 11 May 2008 12:34:42 +0000 (+0000) Subject: benchfft: fixup Makefile so compile gets a bit further. Still tries to run generated... X-Git-Tag: Release-2010-05/1~6959 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f91cc88da285f871bdbbfb2b332a9b16195c5496;p=openembedded.git benchfft: fixup Makefile so compile gets a bit further. Still tries to run generated binaries, though --- diff --git a/packages/fftw/benchfft_3.1.bb b/packages/fftw/benchfft_3.1.bb index 8d2d8b7f34..7b9a7110cf 100644 --- a/packages/fftw/benchfft_3.1.bb +++ b/packages/fftw/benchfft_3.1.bb @@ -3,12 +3,19 @@ SECTION = "libs" PRIORITY = "optional" LICENSE = "GPLv2" +# single precision fftw is called fftwf +DEPENDS = "fftwf" + SRC_URI = "http://www.fftw.org/benchfft/benchfft-${PV}.tar.gz" EXTRA_OECONF = "--disable-fortran --enable-single --enable-shared" inherit autotools pkgconfig +do_compile_prepend() { + sed -i -e 's:all-recursive:$(RECURSIVE_TARGETS):g' ${S}/Makefile +} + do_stage () { autotools_stage_all }