summaryrefslogtreecommitdiff
path: root/common.mak
diff options
context:
space:
mode:
authorRamiro Polla <ramiro@lisha.ufsc.br>2007-01-25 12:29:48 +0000
committerDiego Biurrun <diego@biurrun.de>2007-01-25 12:29:48 +0000
commitca3798dc2213536498ac1d75637c3da8aea2d3c4 (patch)
treebc240c960ff05b105cc41b38907bdf957beaddd9 /common.mak
parent7a7be126632475356b16547d41824891b6b08aeb (diff)
downloadffmpeg-ca3798dc2213536498ac1d75637c3da8aea2d3c4.tar.gz
Remove installstrip in favor of explicit strip; better for cross-compilation.
patch by Ramiro Ribeiro Polla, ramiro lisha.ufsc br Originally committed as revision 7709 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r--common.mak4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.mak b/common.mak
index 0d5fdceec4..1a80833e87 100644
--- a/common.mak
+++ b/common.mak
@@ -63,8 +63,8 @@ install-libs: $(INSTLIBTARGETS)
install-lib-shared: $(SLIBNAME)
install -d "$(shlibdir)"
- install $(INSTALLSTRIP) -m 755 $(SLIBNAME) \
- "$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
+ install -m 755 $(SLIBNAME) "$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
+ $(STRIP) "$(shlibdir)/$(SLIBNAME_WITH_VERSION)"
cd "$(shlibdir)" && \
ln -sf $(SLIBNAME_WITH_VERSION) $(SLIBNAME_WITH_MAJOR)
cd "$(shlibdir)" && \