1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

Remove mdct.o and fft.o from fft-test prerequisites list.

Both objects were added to the link command, resulting in multiple definitions
of symbols. Now linking works in the general case when mdct.o and fft.o are
compiled into libavcodec.a.

Originally committed as revision 9097 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2007-05-22 07:08:38 +00:00
parent 3e2e29fb00
commit f353fbd205

View File

@ -447,6 +447,6 @@ dct-test: dct-test.o fdctref.o $(LIB)
motion-test: motion-test.o $(LIB)
fft-test: fft-test.o mdct.o fft.o $(LIB)
fft-test: fft-test.o $(LIB)
.PHONY: tests