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 /libavcodec/Makefile | |
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 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 9f26bf3625..df77990932 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -280,10 +280,10 @@ fft-test: fft-test.o $(LIB) 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/libavcodec-$(VERSION).so + install $(INSTALLSTRIP) -m 755 $(SLIB) $(prefix)/lib/libavcodec-$(VERSION).so ln -sf libavcodec-$(VERSION).so $(prefix)/lib/libavcodec.so ldconfig || true endif |