diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-04-26 15:14:12 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-04-26 15:14:12 +0000 |
commit | c36bd2866a2f4b46dc53931d5550cf5a0228d6ed (patch) | |
tree | 58fcbd4d40910f167c70873fc89e7e961ccab17b /libswscale | |
parent | b236a735e5d998e5ad998aebd41aa675116a82d0 (diff) | |
download | ffmpeg-c36bd2866a2f4b46dc53931d5550cf5a0228d6ed.tar.gz |
Don't declare -lm as a dependency of swscale-example.
Originally committed as revision 23140 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libswscale/Makefile b/libswscale/Makefile index a1c25a76a4..f6adf2a514 100644 --- a/libswscale/Makefile +++ b/libswscale/Makefile @@ -18,7 +18,8 @@ include ../common.mak cs_test: cs_test.o $(LIB) -swscale-example: swscale-example.o $(LIB) -lm +swscale-example: swscale-example.o $(LIB) +swscale-example: EXTRALIBS += -lm clean:: rm -f cs_test swscale-example |