1
mirror of https://github.com/mpv-player/mpv synced 2025-01-05 03:06:28 +01:00

Makefile: fix install targets

INSTALL_TARGETS-yes is a leftover from INSTALL_TARGETS-$(MPLAYER), which
was removed in 4873b32c59.
This commit is contained in:
Johannes Nixdorf 2012-11-13 09:27:39 +01:00
parent 90784dfc9d
commit 88ac5c5d42

View File

@ -414,9 +414,9 @@ osdep/mpv-rc.o: osdep/mpv.exe.manifest
check_rst2man:
@which $(RST2MAN) > /dev/null 2>&1 || (printf "\n\trst2man not found. You need the docutils (>= 0.7) to generate the manpages. Alternatively you can use 'install-no-man' rule.\n\n" && exit 1)
install: $(INSTALL_TARGETS-yes)
install: $(INSTALL_TARGETS)
install-no-man: $(INSTALL_NO_MAN_TARGETS-yes)
install-no-man: $(INSTALL_NO_MAN_TARGETS)
install-dirs:
if test ! -d $(BINDIR) ; then $(INSTALL) -d $(BINDIR) ; fi