Commit c21fb339 authored by Diego Biurrun's avatar Diego Biurrun

Remove ifneq MINGW condition around man page installation. We don't do

OS-dependent conditions in Makefiles anymore and I doubt this is correct.
If it turns out to be a problem it can easily be fixed.

Originally committed as revision 7028 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c88f5d72
...@@ -132,12 +132,10 @@ wininstaller: all install ...@@ -132,12 +132,10 @@ wininstaller: all install
# install man from source dir if available # install man from source dir if available
install-man: install-man:
ifneq ($(CONFIG_MINGW),yes)
if [ -f doc/ffmpeg.1 ] ; then \ if [ -f doc/ffmpeg.1 ] ; then \
install -d "$(mandir)/man1" ; \ install -d "$(mandir)/man1" ; \
install -m 644 $(MANPAGES) "$(mandir)/man1" ; \ install -m 644 $(MANPAGES) "$(mandir)/man1" ; \
fi fi
endif
install-vhook: install-vhook:
$(MAKE) -C vhook install $(MAKE) -C vhook install
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment