diff options
author | Michel Bardiaux <mbardiaux@peaktime.be> | 2004-10-01 13:32:13 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-10-01 13:32:13 +0000 |
commit | 65d1bea201823178fced4ed1429485eca527e733 (patch) | |
tree | baa27b5083229113847f541e22d18b4676d44ada /libavformat | |
parent | 71c32f19b346f565c23d282f327e84a6af39edc7 (diff) | |
download | ffmpeg-65d1bea201823178fced4ed1429485eca527e733.tar.gz |
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')
-rw-r--r-- | libavformat/Makefile | 4 |
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 |