Commit 9654d98f authored by diego's avatar diego

Have EXTRALIBS appear after other link options, fixes shared build on Cygwin.

based on patch by Marcus Engene, ffmpeg AATT engene DDOOTT se


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5295 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent dd0f8b58
......@@ -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)
......
......@@ -66,7 +66,7 @@ ifeq ($(CONFIG_AUDIO_OSS),yes)
OBJS+= audio.o
endif
EXTRALIBS += -L../libavutil -lavutil$(BUILDSUF) -lavcodec$(BUILDSUF) -L../libavcodec
EXTRALIBS := -L../libavutil -lavutil$(BUILDSUF) -lavcodec$(BUILDSUF) -L../libavcodec $(EXTRALIBS)
ifeq ($(CONFIG_AUDIO_BEOS),yes)
CPPOBJS+= beosaudio.o
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment