diff options
Diffstat (limited to 'recipes/mplayer/files/makefile-nostrip-rc2.patch')
-rw-r--r-- | recipes/mplayer/files/makefile-nostrip-rc2.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/recipes/mplayer/files/makefile-nostrip-rc2.patch b/recipes/mplayer/files/makefile-nostrip-rc2.patch new file mode 100644 index 0000000000..d7c147565f --- /dev/null +++ b/recipes/mplayer/files/makefile-nostrip-rc2.patch @@ -0,0 +1,24 @@ +upstream: not applicable, I think (unless somebody claims there is a more portable way to stripping) + +Index: MPlayer-1.0rc2/Makefile +=================================================================== +--- MPlayer-1.0rc2.orig/Makefile 2008-04-19 10:31:18.000000000 +0200 ++++ MPlayer-1.0rc2/Makefile 2008-04-19 10:31:55.000000000 +0200 +@@ -253,7 +253,7 @@ + if test -f $(CONFDIR)/codecs.conf ; then mv -f $(CONFDIR)/codecs.conf $(CONFDIR)/codecs.conf.old ; fi + + install-mplayer: mplayer$(EXESUF) +- $(INSTALL) -m 755 $(INSTALLSTRIP) mplayer$(EXESUF) $(BINDIR) ++ $(INSTALL) -m 755 mplayer$(EXESUF) $(BINDIR) + + install-mplayer-man: + for i in $(MAN_LANG); do \ +@@ -266,7 +266,7 @@ + done + + install-mencoder: mencoder$(EXESUF) +- $(INSTALL) -m 755 $(INSTALLSTRIP) mencoder$(EXESUF) $(BINDIR) ++ $(INSTALL) -m 755 mencoder$(EXESUF) $(BINDIR) + for i in $(MAN_LANG); do \ + if test "$$i" = en ; then \ + cd $(MANDIR)/man1 && ln -sf mplayer.1 mencoder.1 ; \ |