summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorDan Christiansen <danchr@daimi.au.dk>2003-05-11 11:26:35 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-05-11 11:26:35 +0000
commit04431ca1c0db95251765973ba59622f7f57543b1 (patch)
tree2ca0cb84d3f4018b61ff75e184d38582ffc2fc69 /libavcodec
parent05493021889a6d226791aa2eb412de7becad2ace (diff)
ranlib patch by (Dan Christiansen <danchr at daimi dot au dot dk>)
Originally committed as revision 1853 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/libpostproc/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/libpostproc/Makefile b/libavcodec/libpostproc/Makefile
index 095dec91ae..3733f3a63d 100644
--- a/libavcodec/libpostproc/Makefile
+++ b/libavcodec/libpostproc/Makefile
@@ -43,7 +43,9 @@ $(SPPLIB): $(SPPOBJS)
endif
$(PPLIB): $(PPOBJS)
- $(AR) r $(PPLIB) $(PPOBJS)
+ rm -f $@
+ $(AR) rc $@ $(PPOBJS)
+ $(RANLIB) $@
install: all
ifeq ($(SHARED_PP),yes)