aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/Makefile
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-09-02 16:48:40 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-09-02 16:48:40 +0000
commitbe7109c12b95b6ab2490b9e035db9143b43f8d73 (patch)
tree70548db0d9899e71f7272e6fc3a7c7b446cc00cf /libavcodec/Makefile
parentecfd40b390732056dc9cb3b79b1ab63c22c7700a (diff)
downloadffmpeg-be7109c12b95b6ab2490b9e035db9143b43f8d73.tar.gz
ar -s -> ranlib
Originally committed as revision 900 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r--libavcodec/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index 31f5be28a6..d66dfcad14 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -96,7 +96,8 @@ tests: apiexample cpuid_test $(TESTS)
$(LIB): $(OBJS)
rm -f $@
- $(AR) rcs $@ $(OBJS)
+ $(AR) rc $@ $(OBJS)
+ $(RANLIB) $@
$(SLIB): $(OBJS)
$(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS)