[MPlayer-cvslog] r26809 - trunk/Makefile

diego subversion at mplayerhq.hu
Sun May 18 18:01:46 CEST 2008


Author: diego
Date: Sun May 18 18:01:46 2008
New Revision: 26809

Log:
Simplify installation rules with $<.


Modified:
   trunk/Makefile

Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile	(original)
+++ trunk/Makefile	Sun May 18 18:01:46 2008
@@ -824,7 +824,7 @@ install-dirs:
 	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 $(INSTALLSTRIP) $< $(BINDIR)
 
 install-mplayer-man:
 	for lang in $(MAN_LANG); do \
@@ -837,7 +837,7 @@ install-mplayer-man:
 	done
 
 install-mencoder: mencoder$(EXESUF)
-	$(INSTALL) -m 755 $(INSTALLSTRIP) mencoder$(EXESUF) $(BINDIR)
+	$(INSTALL) -m 755 $(INSTALLSTRIP) $< $(BINDIR)
 	for lang in $(MAN_LANG); do \
 		if test "$$lang" = en ; then \
 			cd $(MANDIR)/man1 && ln -sf mplayer.1 mencoder.1 ; \



More information about the MPlayer-cvslog mailing list