diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 19:33:36 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-02-15 19:33:36 +0000 |
commit | b4aa24fdfab5c8d486b141957e5c4e668732aa4d (patch) | |
tree | e8fbb36d3452ebbd1fa6081c779429363cdc73a5 | |
parent | 8d990c19148d528625f18595a4ff46475e5c30ff (diff) | |
download | ffmpeg-b4aa24fdfab5c8d486b141957e5c4e668732aa4d.tar.gz |
Link to libraries in dependency order.
Commited in SoC by VĂctor Paesa on 2008-01-12 11:31:09
Originally committed as revision 11952 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavfilter/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile index 0f5f741a60..7865a8a065 100644 --- a/libavfilter/Makefile +++ b/libavfilter/Makefile @@ -27,7 +27,7 @@ OBJS-yes = vf_crop.o \ HEADERS = avfilter.h -EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) -L$(BUILD_ROOT)/libswscale -lswscale$(BUILDSUF) -L$(BUILD_ROOT)/libavcodec -lavcodec$(BUILDSUF) $(EXTRALIBS) +EXTRALIBS := -L$(BUILD_ROOT)/libavcodec -lavcodec$(BUILDSUF) -L$(BUILD_ROOT)/libswscale -lswscale$(BUILDSUF) -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS) NAME=avfilter LIBVERSION=$(LAVFILTERVERSION) |