summaryrefslogtreecommitdiff
path: root/libavformat/Makefile
diff options
context:
space:
mode:
authorMichel Bardiaux <mbardiaux@peaktime.be>2004-10-01 13:32:13 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-10-01 13:32:13 +0000
commit65d1bea201823178fced4ed1429485eca527e733 (patch)
treebaa27b5083229113847f541e22d18b4676d44ada /libavformat/Makefile
parent71c32f19b346f565c23d282f327e84a6af39edc7 (diff)
Help debugging by keeping symbols ans line numbers patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
Originally committed as revision 3545 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r--libavformat/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile
index ed5416d9ce..577dc77bce 100644
--- a/libavformat/Makefile
+++ b/libavformat/Makefile
@@ -102,10 +102,10 @@ depend: $(SRCS)
ifeq ($(BUILD_SHARED),yes)
install: all install-headers
ifeq ($(CONFIG_WIN32),yes)
- install -s -m 755 $(SLIB) "$(prefix)"
+ install $(INSTALLSTRIP) -m 755 $(SLIB) "$(prefix)"
else
install -d $(prefix)/lib
- install -s -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so
+ install $(INSTALLSTRIP) -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so
ln -sf libavformat-$(VERSION).so $(prefix)/lib/libavformat.so
ldconfig || true
endif