summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-01 11:32:58 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-01 11:32:58 +0000
commit74a216ea560ab1f17f526b89731ef3ddca7c476e (patch)
treea9567a22c2f6f408e48a9c7f3b7d9f22560799f6 /Makefile
parent3fd161fcc7e16b83f48e0443d2ef3f2357c1a36d (diff)
downloadmpv-74a216ea560ab1f17f526b89731ef3ddca7c476e.tar.bz2
mpv-74a216ea560ab1f17f526b89731ef3ddca7c476e.tar.xz
Remove -c option from install commands. It is ignored by GNU install and
incompatible with some other install commands. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28423 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e56edd6922..7d30bc59b1 100644
--- a/Makefile
+++ b/Makefile
@@ -903,7 +903,7 @@ install-mencoder-man-en: install-mplayer-man-en
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 @@ endef
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)))