diff options
author | Måns Rullgård <mans@mansr.com> | 2005-05-18 14:05:17 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2005-05-18 14:05:17 +0000 |
commit | 7919d97e6db122f6dbbaeddd0ce8a57812e3769a (patch) | |
tree | 7018dddfa590a1e152bc12e7257a745599ece651 /libavcodec/Makefile | |
parent | 5cf08f2393901da6656b1ae499fb5960c101d750 (diff) | |
download | ffmpeg-7919d97e6db122f6dbbaeddd0ce8a57812e3769a.tar.gz |
fix shared libpostproc build
Originally committed as revision 4272 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 2dde323157..ee36c0381f 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -267,7 +267,7 @@ endif ifeq ($(CONFIG_PP),yes) ifeq ($(SHARED_PP),yes) -EXTRALIBS += -L$(VPATH)/libpostproc -lpostproc$(BUILDSUF) +EXTRALIBS += -Llibpostproc -lpostproc$(BUILDSUF) else # LIBS += libpostproc/libpostproc.a ... should be fixed OBJS += libpostproc/postprocess.o |