1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-09 19:22:05 +00:00

Create directories for the translated man pages in the install-dirs target.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26819 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-05-18 16:43:17 +00:00
parent 32fc1074a6
commit 2ac55e2331

View File

@ -819,6 +819,7 @@ install-dirs:
$(INSTALL) -d $(BINDIR)
$(INSTALL) -d $(DATADIR)
$(INSTALL) -d $(MANDIR)/man1
$(INSTALL) -d $(foreach lang,$(MAN_LANG),$(MANDIR)/$(lang)/man1)
$(INSTALL) -d $(CONFDIR)
install-%: %$(EXESUF)
@ -829,7 +830,6 @@ install-mplayer-man:
if test "$$lang" = en ; then \
$(INSTALL) -c -m 644 DOCS/man/en/mplayer.1 $(MANDIR)/man1/ ; \
else \
$(INSTALL) -d $(MANDIR)/$$lang/man1 ; \
$(INSTALL) -c -m 644 DOCS/man/$$lang/mplayer.1 $(MANDIR)/$$lang/man1/ ; \
fi ; \
done