diff options
author | Dan Christiansen <danchr@daimi.au.dk> | 2003-05-11 11:26:35 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-05-11 11:26:35 +0000 |
commit | 04431ca1c0db95251765973ba59622f7f57543b1 (patch) | |
tree | 2ca0cb84d3f4018b61ff75e184d38582ffc2fc69 /libavcodec/libpostproc/Makefile | |
parent | 05493021889a6d226791aa2eb412de7becad2ace (diff) | |
download | ffmpeg-04431ca1c0db95251765973ba59622f7f57543b1.tar.gz |
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/libpostproc/Makefile')
-rw-r--r-- | libavcodec/libpostproc/Makefile | 4 |
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) |