Mercurial > mplayer.hg
changeset 28388:69391048c83c
Remove -c option from install commands. It is ignored by GNU install and
incompatible with some other install commands.
author | diego |
---|---|
date | Sun, 01 Feb 2009 11:32:58 +0000 |
parents | db90719da3bf |
children | 18ad345eb642 |
files | Makefile |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile Sun Feb 01 11:29:18 2009 +0000 +++ b/Makefile Sun Feb 01 11:32:58 2009 +0000 @@ -903,7 +903,7 @@ install-mplayer-man-en: $(INSTALL) -d $(MANDIR)/man1 - $(INSTALL) -c -m 644 DOCS/man/en/mplayer.1 $(MANDIR)/man1/ + $(INSTALL) -m 644 DOCS/man/en/mplayer.1 $(MANDIR)/man1/ define MENCODER_MAN_RULE install-mencoder-man-$(lang): install-mplayer-man-$(lang) @@ -913,7 +913,7 @@ define MPLAYER_MAN_RULE install-mplayer-man-$(lang): $(INSTALL) -d $(MANDIR)/$(lang)/man1 - $(INSTALL) -c -m 644 DOCS/man/$(lang)/mplayer.1 $(MANDIR)/$(lang)/man1/ + $(INSTALL) -m 644 DOCS/man/$(lang)/mplayer.1 $(MANDIR)/$(lang)/man1/ endef $(foreach lang,$(filter-out en,$(MAN_LANG_ALL)),$(eval $(MENCODER_MAN_RULE)))