1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

Simplify install-progs prerequisite declaration.

Originally committed as revision 10838 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2007-10-22 17:15:12 +00:00
parent 3a994ca43b
commit c4fa7ebcda

View File

@ -141,9 +141,8 @@ install: install-progs install-libs install-headers $(INSTALL_TARGETS-yes)
ifeq ($(BUILD_SHARED),yes)
install-progs: $(PROGS) install-libs
else
install-progs: $(PROGS)
endif
install-progs: $(PROGS)
install -d "$(BINDIR)"
install -c -m 755 $(PROGS) "$(BINDIR)"