speexdsp: fix link dependency on FFT library (#19714)
without this, the library does not have a dependency on the fft lib it was built with.
This commit is contained in:
parent
95d63afa58
commit
886ae9a83f
@ -23,6 +23,12 @@ class Speexdsp(AutotoolsPackage):
|
|||||||
|
|
||||||
patch('mkl.patch')
|
patch('mkl.patch')
|
||||||
|
|
||||||
|
def patch(self):
|
||||||
|
filter_file('libspeexdsp_la_LIBADD = $(LIBM)',
|
||||||
|
'libspeexdsp_la_LIBADD = $(LIBM) $(FFT_LIBS)',
|
||||||
|
'libspeexdsp/Makefile.am',
|
||||||
|
string=True)
|
||||||
|
|
||||||
def autoreconf(self, spec, prefix):
|
def autoreconf(self, spec, prefix):
|
||||||
autoreconf('--install', '--verbose', '--force')
|
autoreconf('--install', '--verbose', '--force')
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user