diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-04-15 15:05:53 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-04-15 15:05:53 +0000 |
commit | 2cf30841b5871a720648cfe53fd89607c496702f (patch) | |
tree | 8ec7011ebe35c641f24fb8a7137740b7aaa46c68 /libavcodec | |
parent | e1ffc3adb8dc533567b8aae25f4f31fcd9d4bf2d (diff) | |
download | ffmpeg-2cf30841b5871a720648cfe53fd89607c496702f.tar.gz |
Have EXTRALIBS appear after other link options, fixes shared build on Cygwin.
based on patch by Marcus Engene, ffmpeg AATT engene DDOOTT se
Originally committed as revision 5295 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 42796e493e..d8e246254d 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -293,7 +293,7 @@ OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \ endif endif -EXTRALIBS += -L../libavutil -lavutil$(BUILDSUF) +EXTRALIBS := -L../libavutil -lavutil$(BUILDSUF) $(EXTRALIBS) # currently using libdts for dts decoding ifeq ($(CONFIG_DTS),yes) |