diff options
author | Ramiro Polla <ramiro@lisha.ufsc.br> | 2007-01-25 12:29:48 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-01-25 12:29:48 +0000 |
commit | ca3798dc2213536498ac1d75637c3da8aea2d3c4 (patch) | |
tree | bc240c960ff05b105cc41b38907bdf957beaddd9 /Makefile | |
parent | 7a7be126632475356b16547d41824891b6b08aeb (diff) | |
download | ffmpeg-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 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -124,7 +124,7 @@ else install-progs: $(PROGS) endif install -d "$(bindir)" - install -c $(INSTALLSTRIP) -m 755 $(PROGS) "$(bindir)" + install -c -m 755 $(PROGS) "$(bindir)" # Create the Windows installer. wininstaller: all install |