diff options
author | Måns Rullgård <mans@mansr.com> | 2010-01-27 00:26:41 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-01-27 00:26:41 +0000 |
commit | 97d5fa38e07971a2bb9e2102f27a1374b332166a (patch) | |
tree | ed7eac9fda80312e614ab21d5eeb89a1f90c829a /Makefile | |
parent | b51de6d8c71ff087e006c3a9613f6cb055aea687 (diff) | |
download | ffmpeg-97d5fa38e07971a2bb9e2102f27a1374b332166a.tar.gz |
10l: fix linking
Alphabetical order isn't always a good idea.
Originally committed as revision 21472 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,10 +20,10 @@ ALLPROGS = $(addsuffix $(EXESUF), $(BASENAMES)) ALLPROGS_G = $(addsuffix _g$(EXESUF), $(BASENAMES)) ALLMANPAGES = $(addsuffix .1, $(BASENAMES)) -FFLIBS-$(CONFIG_AVCODEC) += avcodec FFLIBS-$(CONFIG_AVDEVICE) += avdevice FFLIBS-$(CONFIG_AVFILTER) += avfilter FFLIBS-$(CONFIG_AVFORMAT) += avformat +FFLIBS-$(CONFIG_AVCODEC) += avcodec FFLIBS-$(CONFIG_POSTPROC) += postproc FFLIBS-$(CONFIG_SWSCALE) += swscale |